コード例 #1
0
        public bool OnSubmitSelection(int Id, object Selection, int SelType, ref string ItemText)
        {
            var res = true;

            SubmitSelection?.Invoke(Id, Selection, SelType, ref ItemText, ref res);

            return(res);
        }
コード例 #2
0
ファイル: SelectionPopUp.cs プロジェクト: Djcoyer/Software-2
 public void SetSubmitSelection(SubmitSelection submitSelection)
 {
     this.submitSelection = submitSelection;
 }