请帮助我。.我尝试从表单向用户控件发送一个值,但是它不起作用。.我找不到我的错误。
** txtMiktar修饰符是公开的。
用户控制代码
$(document).on('click', '#users_perm_save', function (event) {
var result = $('#jstree').jstree('get_selected');
});
public UC_CikisKayit(){InitializeComponent();}
表格代码
public string ID
{
set { txtMiktar.Text = value; }
}
private UC_CikisKayit _CikisKayit = null;
public LotMiktar(UC_CikisKayit cke)
{
InitializeComponent();
_CikisKayit = cke;
}
public string ID
{
get { return txtLotMiktar.Text; }
}