private void Initialize() { FishHistory history = new FishHistory(); history.DockAreas = WeifenLuo.WinFormsUI.Docking.DockAreas.DockRight; history.Show(dockPanel1, WeifenLuo.WinFormsUI.Docking.DockState.DockRight); history.DockState = WeifenLuo.WinFormsUI.Docking.DockState.DockRightAutoHide; history.DockHandler.CloseButton = false; history.DockHandler.CloseButtonVisible = false; NewTab(); }
private void fishHistoryToolStripMenuItem_Click(object sender, EventArgs e) { FishHistory history = new FishHistory(); history.Show(); }