コード例 #1
0
ファイル: FilterFindUCTest.cs プロジェクト: lulzzz/openpetra
 void Button1Click(object sender, EventArgs e)
 {
     // Attempt to show the Find Tab only if it is there...
     if (FUcoFilterAndFind.IsFindTabShown)
     {
         FUcoFilterAndFind.DisplayFindTab();
     }
 }
コード例 #2
0
ファイル: FilterFindUCTest.cs プロジェクト: lulzzz/openpetra
 void BtnCollapseExpandPanelClick(object sender, EventArgs e)
 {
     if (!FUcoFilterAndFind.IsCollapsed)
     {
         FUcoFilterAndFind.Collapse();
     }
     else
     {
         FUcoFilterAndFind.Expand();
     }
 }
コード例 #3
0
ファイル: FilterFindUCTest.cs プロジェクト: lulzzz/openpetra
 void BtnFocusFirstArgumentControlClick(object sender, System.EventArgs e)
 {
     FUcoFilterAndFind.FocusFirstArgumentControl();
 }