我希望我的問題是相關的,因爲我是一個新手。如何從Windows窗體訪問「公共靜態類」
例如,我有兩個編碼命名爲「Class1.cs」和「Form1.cs」。基本上,Class1.cs是發生圖像過濾的程序,同時在「Form1.cs」中是允許它從文件加載圖像的程序。我點擊按鈕處理它後,是否可以從「Form1.cs」訪問「Class1.cs」?
的Class1.cs
namespace MyProgram
{
class Class1
{
public static class Class1Program
{
//my program for image filtering is starting at here
}
}
}
Form1.cs的
namespace MyProgram
{
public partial class Form1 : Form
{
public Form1()
{ InitializeComponent(); }
private void LoadImageButton_Click(object sender, EventArgs e)
{
//My program here is to open up a file image right after I click on this button
}
private void ResultButton_Click(object sender, EventArgs e)
{
// Here is the part where I don't know how to access the program from "Class1.cs".
// I'm expecting the image that I've load before will be able to filter right after I clicked on this button
}
}
}
我想知道是否有必要添加或編輯一些程序在「Program.c的」。
我希望我的問題能夠得到解答。非常感謝您的參與。
很抱歉的文本格式。我不知道爲什麼代碼塊沒有格式化,因爲他們應該。如果我有時間後,我會嘗試修復格式。 – Agustin0987
感謝您的好格式不幸運。 – Agustin0987
謝謝。很好的解釋。我會注意到這一點。 –