我想要做的是将按钮单击事件中的两个变量传递给同一文件中的另一个类。
这是我的代码:
Settings.cs(Windows 窗体文件)
namespace ShovelShovel
public partial class Settings : Form
{
public Settings()
{
InitializeComponent();
}
public void button1_Click(object sender, EventArgs e)
{
SetWindowSize.SaveData(textBoxWidth.Text, textBoxHeight.Text);
}
}
}
}
SetWindowSize.cs(类文件)
namespace ShovelShovel
class SetWindowSize
{
public static void SaveData(string width, string height)
{
using (BinaryWriter binaryWriter = new BinaryWriter(File.Open("file.dat", FileMode.Create)))
{
binaryWriter.Write(width, height);
}
}
}
}
我想在 SetWindowSize.cs 中从Settings.width
和中Settings.height
获取文本。textBoxWidth
textBoxHeight
我无法改变
public void button1_Click(object sender, EventArgs e)
其他任何事情,因为它会破坏表单的功能,所以我不知道该怎么办。