本文整理匯總了C#中System.Result._AddContractChangedHandler方法的典型用法代碼示例。如果您正苦於以下問題:C# Result._AddContractChangedHandler方法的具體用法?C# Result._AddContractChangedHandler怎麽用?C# Result._AddContractChangedHandler使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Result
的用法示例。
在下文中一共展示了Result._AddContractChangedHandler方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: OpenMe
public void OpenMe(ResultSelectControl s, Control attach_sel, Control attach_form, Result resultToCopy)
{
if (IsOpened())
CloseMe(true);
m_result = new Result(resultToCopy);
m_result.Born = true;
m_result.Changed += OnResultChanged;
m_result._AddContractChangedHandler(OnContractChanged);
m_selControl = s;
m_attach_sel = attach_sel;
m_attach_form = attach_form;
DefineLocation();
if (!m_attach_form.Controls.Contains(this))
m_attach_form.Controls.Add(this);
Visible = true;
BringToFront();
this.Focus();
}