2010年9月22日 星期三

C# UserControl

原來UserControl要另外寫專案來包 >_<"

開一個WindowsFormsControlLib的專案
然後就可以建立UserControl了
然後執行後
產生的DLL檔
拉到元件列裡面
就可以拿出來使用囉
而要做對外的觸角 (給值與取值的地方)
就寫

public string TextValue
{
get { return this.textBox1.Text; }
set { this.textBox1.Text=value; }
}


一直以為可以直接做 = =+
原來是我誤會了 囧

沒有留言:

張貼留言