Наследование: System.Windows.Forms.Form
Пример #1
0
 void LoadBinaries(IEnumerable <ushort> indices, bool isBinary)
 {
     using (var dialog = new BinaryValueDialog(isBinary, indices))
     {
         if (dialog.ShowDialog() == DialogResult.OK)
         {
             this.AddChanges(dialog.SelectedChanges);
         }
     }
 }
Пример #2
0
 void LoadBinaries(IEnumerable<ushort> indices, bool isBinary)
 {
     using (var dialog = new BinaryValueDialog(isBinary, indices))
     {
         if (dialog.ShowDialog() == DialogResult.OK)
         {
             this.AddChanges(dialog.SelectedChanges);
         }
     }
 }