using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using WeifenLuo.WinFormsUI.Docking; namespace RomCheater.Docking { public partial class FloatingDataTypeConverter : DockContent { public FloatingDataTypeConverter() { InitializeComponent(); chkhexadecimal.Checked = true; } private void chkBinary_CheckedChanged(object sender, EventArgs e) { // binary input txtInput.InputType = MultiNumericBox_InputType.Binary; } private void chkdecimal_CheckedChanged(object sender, EventArgs e) { // decimal input txtInput.InputType = MultiNumericBox_InputType.Decimal; } private void chkhexadecimal_CheckedChanged(object sender, EventArgs e) { // hex input txtInput.InputType = MultiNumericBox_InputType.Hex; } private void chkoctal_CheckedChanged(object sender, EventArgs e) { // octal input txtInput.InputType = MultiNumericBox_InputType.Octal; } private void chkieee754float_CheckedChanged(object sender, EventArgs e) { // IEEE754 Hex Float (hex) txtInput.InputType = MultiNumericBox_InputType.IEEE754HexFloat; } } }