本文整理匯總了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();
}