Esempio n. 1
0
        protected override void OnShown(EventArgs e)
        {
            base.OnShown(e);

            DevViewForm.Show(this);
            StatusForm.Show(this);

            MapWindow.Show(this);

            this.textBox.Focus();

            this.IsShown = true;
        }
Esempio n. 2
0
        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();
        }