本文整理汇总了C#中System.Windows.Forms.TabPage.?.Dispose方法的典型用法代码示例。如果您正苦于以下问题:C# TabPage.?.Dispose方法的具体用法?C# TabPage.?.Dispose怎么用?C# TabPage.?.Dispose使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.TabPage
的用法示例。
在下文中一共展示了TabPage.?.Dispose方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateTabPage
/// <summary>
/// Creates the tab page for the given character.
/// </summary>
/// <param name="character">The character</param>
/// <returns>A tab page.</returns>
private static TabPage CreateTabPage(Character character)
{
// Create the tab
TabPage page;
TabPage tempPage = null;
try
{
tempPage = new TabPage(character.Name);
tempPage.UseVisualStyleBackColor = true;
tempPage.Padding = new Padding(5);
tempPage.Tag = character;
// Create the character monitor
CreateCharacterMonitor(character, tempPage);
page = tempPage;
tempPage = null;
}
finally
{
tempPage?.Dispose();
}
return page;
}
示例2: AddTabPage
/// <summary>
/// Adds the tab page for the given remapping
/// </summary>
/// <param name="remapping">The remapping.</param>
/// <param name="tabName">Name of the tab.</param>
private void AddTabPage(RemappingResult remapping, string tabName)
{
AttributesOptimizerControl ctl = CreateAttributesOptimizationControl(remapping);
if (ctl == null)
return;
m_remappingDictionary[ctl] = remapping;
TabPage tempPage = null;
try
{
tempPage = new TabPage(tabName);
tempPage.Controls.Add(ctl);
TabPage page = tempPage;
tempPage = null;
tabControl.TabPages.Add(page);
}
finally
{
tempPage?.Dispose();
}
}