里面的Skintxt属性才是主体:SkinTextBox.SkinTxt.TextChange
1 public partial class Form1 : Form 2 { 3 public Form1() 4 { 5 InitializeComponent(); 6 skinTextBox1.SkinTxt.TextChanged += SkinTxt_TextChanged; 7 } 8 9 private void skinTextBox1_Paint(object sender, PaintEventArgs e) 10 { 11 12 } 13 14 private void SkinTxt_TextChanged(object sender, EventArgs e) 15 { 16 17 } 18 }
注:你这个问题官网论坛有人已给出了答案,官网论坛多看看,对你使用cskin有帮助,地址:http://bbs.cskin.net/forum.php?mod=viewthread&tid=2187&highlight=skinTextBox