|
分類:[C#]
MicrosoftVisualStudio C# .net です。
UserControlをためしに作ってみました。 以下の通りなんですけど
なぜかフォームにこのユーザーコントロールを貼り付けたのですが プロパティの設定ができません。表示がグレーになっています。 でも、個別には設定できるみたいです。 基本的なことなのでしょうが、どうすればプロパティウィンドウで 設定できるようになるのか教えてください。
public partial class UserControl1 : UserControl { clsSample sample;
public UserControl1() { InitializeComponent(); }
public clsSample Sample { get { return (sample); } set { sample = value; } }
public class clsSample { public int x = 10; public int y = 20; } }
private void button1_Click(object sender, EventArgs e) { userControl11.Sample.x = 100; userControl11.Sample.y = 200; MessageBox.Show(string.Format("{0}, {0}", userControl11.Sample.x, userControl11.Sample.y)); }
|