コード例 #1
0
ファイル: Notes.cs プロジェクト: xiaoyustudio181/Hive
 void ShowData()
 {
     LV.Where("GroupID=" + (LB.SelectedValue == null ? "0" : LB.SelectedValue));
     LV.ShowData(true);
     table = LV.DataTable;
     ToAdd();
     LV.Focus();
 }
コード例 #2
0
ファイル: LabelsUpdate.cs プロジェクト: xiaoyustudio181/Hive
 void ShowData()
 {
     LV.ShowData(true);
     if (table == null)
     {
         table = LV.DataTable;
     }
     ToAdd();
     LV.Focus();
 }