コード例 #1
0
ファイル: ChooseTypeForm.cs プロジェクト: nemanjazz/iog
 private void btnSearchType_Click(object sender, EventArgs e)
 {
     var searchDialog = new SearchTypeDialog(units);
     if (searchDialog.ShowDialog() == DialogResult.OK)
     {
         changeCurrentTypeAndRefreshLists(searchDialog.ResultType);
     }
 }
コード例 #2
0
ファイル: ChooseTypeForm.cs プロジェクト: nemanjazz/iog
        private void btnSearchType_Click(object sender, EventArgs e)
        {
            var searchDialog = new SearchTypeDialog(units);

            if (searchDialog.ShowDialog() == DialogResult.OK)
            {
                changeCurrentTypeAndRefreshLists(searchDialog.ResultType);
            }
        }