예제 #1
1
 public FormIFFEditorFind(FormIFFILFWSEditor formIFFILFWSEditor)
 {
     InitializeComponent();
       this.dynamicByteProvider = new DynamicByteProvider(new Byte[0]);
       this.hexBoxFind.ByteProvider = this.dynamicByteProvider;
       this.m_FormIFFILFWSEditor = formIFFILFWSEditor;
       this.comboBoxSearchRegion.SelectedIndex = 1;
 }
예제 #2
0
 public FormIFFEditorReplace(FormIFFILFWSEditor formIFFILFWSEditor)
 {
     InitializeComponent();
       this.m_FormIFFILFWSEditor = formIFFILFWSEditor;
       this.dynamicByteProviderFindWhat = new DynamicByteProvider(new Byte[0]);
       this.hexBoxFindWhat.ByteProvider = this.dynamicByteProviderFindWhat;
       this.dynamicByteProviderReplaceWith = new DynamicByteProvider(new Byte[0]);
       this.hexBoxReplaceWith.ByteProvider = this.dynamicByteProviderReplaceWith;
       this.comboBoxSearchIn.SelectedIndex = 0;
 }