Exemplo n.º 1
0
        public ConnectionComboBox(ISimulatedConnection simulatedConnection)
        {
            this.simulatedConnection = simulatedConnection;
            InitializeComponent();

            Items.Clear();
            Items.Add("Online");
            Items.Add("Offline");

            SelectedIndex = 0;
            SelectedIndexChanged += ConnectionComboBox_SelectedIndexChanged;
        }
Exemplo n.º 2
0
        public ConnectionComboBox(ISimulatedConnection simulatedConnection)
        {
            this.simulatedConnection = simulatedConnection;
            InitializeComponent();

            Items.Clear();
            Items.Add("Online");
            Items.Add("Offline");

            SelectedIndex         = 0;
            SelectedIndexChanged += ConnectionComboBox_SelectedIndexChanged;
        }