Summary description for ByteView.
Inheritance: System.Windows.Forms.Form
Exemple #1
0
 private void showBytes_CheckedChanged(object sender, System.EventArgs e)
 {
     if (showBytes.Checked)
     {
         byteView = new ByteView(view.Selected);
         byteView.Show();
         byteView.Location  = new Point(this.Parent.Right, this.Parent.Top);
         byteView.Disposed += new EventHandler(bvDisposed);
     }
     else
     {
         byteView.Dispose();
     }
 }
		private void showBytes_CheckedChanged(object sender, System.EventArgs e)
		{
			if(showBytes.Checked)
			{
				byteView = new ByteView(view.Selected);
				byteView.Show();
				byteView.Location = new Point(this.Parent.Right,this.Parent.Top);
				byteView.Disposed+=new EventHandler(bvDisposed);
			}
			else
			{
				byteView.Dispose();
			}
		}