我有 2 个不同的Forms
. 我的第一个表单Form1
是具有TextBox
被调用的主表单textbox1
。我的另一种形式被调用FontSettings
并且应该被使用,因此Form1
可以继承FontSettings
数据。我正在尝试发送一个string
和2 integers
from FontSettings
to Form1
。它看起来像这样。
字体设置:
Form1 form1 = new Form1(); form1.insertFont(family, size, color);
表格1:
public void insertFont(string a, int b, string c) { if (textBox1.SelectionLength > 0) { xx = textBox1.SelectedText; textBox1.SelectedText = textBox1.SelectedText.Replace(xx, "" + a + "\" + b + c + "a"); } else { textBox1.Paste("" + a + "\" + b + c + "a"); } }
使用的字符串和两个整数都是public。
有人请向我描述我做错了什么?