private void listBox_History_DoubleClick(object sender, EventArgs e) { if (this.historyItems == null) { return; } if (this.historyItems.Count <= 0) { return; } ScrumQueue.BussinessLogic.History h = ((ScrumQueue.BussinessLogic.History) this.listBox_History.SelectedItem); UIHistory uh = new UIHistory(h, this.historyItems, this.listBox_History.SelectedIndex); uh.ShowDialog(); }
private void listBox_History_DoubleClick(object sender, EventArgs e) { if (this.historyItems == null) return; if (this.historyItems.Count <= 0) return; ScrumQueue.BussinessLogic.History h = ((ScrumQueue.BussinessLogic.History)this.listBox_History.SelectedItem); UIHistory uh = new UIHistory(h, this.historyItems, this.listBox_History.SelectedIndex); uh.ShowDialog(); }