System.NullReferenceException将值窗体发送给用户控件时

时间:2019-03-20 05:58:52

标签: c# winforms nullreferenceexception

请帮助我。.我尝试从表单向用户控件发送一个值,但是它不起作用。.我找不到我的错误。

** 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; }
        }

0 个答案:

没有答案