protected override void OnShown(EventArgs e) { base.OnShown(e); DevViewForm.Show(this); StatusForm.Show(this); MapWindow.Show(this); this.textBox.Focus(); this.IsShown = true; }
public MudClientForm( CancellationToken cancellationToken, ConnectionClientProducer connectionClientProducer) { _connectionClientProducer = connectionClientProducer; _cancellationToken = cancellationToken; InitializeComponent(); this.KeyPreview = true; DevViewForm = new DevViewForm(); StatusForm = new StatusForm(); MapWindow = new MapWindow(); _aliases.LoadAliases(); }
private void hotKeysDevWindowStripMenuItem_Click(object sender, EventArgs e) { DevViewForm.Show(this); }