本文整理汇总了C#中WeifenLuo.WinFormsUI.Docking.DockPane.Show方法的典型用法代码示例。如果您正苦于以下问题:C# DockPane.Show方法的具体用法?C# DockPane.Show怎么用?C# DockPane.Show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WeifenLuo.WinFormsUI.Docking.DockPane
的用法示例。
在下文中一共展示了DockPane.Show方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MainForm_Load
private void MainForm_Load(object pSender, EventArgs pArgs)
{
if (new SetupForm().ShowDialog(this) != DialogResult.OK) { Close(); return; }
foreach (LibPcapLiveDevice device in LibPcapLiveDeviceList.Instance)
{
if (device.Interface.FriendlyName == Config.Instance.Interface)
{
mDevice = device;
break;
}
}
try
{
mDevice.Open(DeviceMode.Promiscuous, 1);
}
catch
{
MessageBox.Show("Failed to set the device in Promiscuous mode! But that doesn't really matter lol.");
mDevice.Open();
}
mDevice.Filter = string.Format("tcp portrange {0}-{1}", Config.Instance.LowPort, Config.Instance.HighPort);
mTimer.Enabled = true;
mSearchForm.Show(mDockPanel);
mDataForm.Show(mDockPanel);
mStructureForm.Show(mDockPanel);
mPropertyForm.Show(mDockPanel);
DockPane rightPane1 = new DockPane(mStructureForm, DockState.DockRight, true);
DockPane rightPane2 = new DockPane(mPropertyForm, DockState.DockRight, true);
rightPane1.Show();
rightPane2.Show();
}
示例2: MainForm_Load
private void MainForm_Load(object pSender, EventArgs pArgs)
{
if (!Config.Instance.LoadedFromFile)
{
if (ShowSetupForm() != DialogResult.OK)
{
Close();
return;
}
}
SetupAdapter();
mTimer.Enabled = true;
mSearchForm.Show(mDockPanel);
mDataForm.Show(mDockPanel);
mStructureForm.Show(mDockPanel);
mPropertyForm.Show(mDockPanel);
DockPane rightPane1 = new DockPane(mStructureForm, DockState.DockRight, true);
DockPane rightPane2 = new DockPane(mPropertyForm, DockState.DockRight, true);
rightPane1.Show();
rightPane2.Show();
/*
foreach (string arg in _startupArguments)
{
SessionForm session = NewSession();
session.OpenReadOnly(arg);
session.Show(mDockPanel, DockState.Document);
}
*/
}
示例3: MainForm_Load
private void MainForm_Load(object pSender, EventArgs pArgs)
{
if (new SetupForm().ShowDialog(this) != DialogResult.OK) { Close(); return; }
foreach (PcapDevice device in new PcapDeviceList())
{
if (device.Interface.FriendlyName == Config.Instance.Interface)
{
mDevice = device;
break;
}
}
mDevice.Open(true, 1);
mDevice.SetFilter(string.Format("tcp portrange {0}-{1}", Config.Instance.LowPort, Config.Instance.HighPort));
mTimer.Enabled = true;
mSearchForm.Show(mDockPanel);
mDataForm.Show(mDockPanel);
mStructureForm.Show(mDockPanel);
mPropertyForm.Show(mDockPanel);
DockPane rightPane1 = new DockPane(mStructureForm, DockState.DockRight, true);
DockPane rightPane2 = new DockPane(mPropertyForm, DockState.DockRight, true);
rightPane1.Show();
rightPane2.Show();
}