本文整理汇总了C#中Gtk.Notebook.SetTabLabelText方法的典型用法代码示例。如果您正苦于以下问题:C# Notebook.SetTabLabelText方法的具体用法?C# Notebook.SetTabLabelText怎么用?C# Notebook.SetTabLabelText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Gtk.Notebook
的用法示例。
在下文中一共展示了Notebook.SetTabLabelText方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MainWindow
public MainWindow()
: base(WindowType.Toplevel)
{
this.barChart = new SmartQuant.Controls.BarChart.BarChart();
this.barChart2 = new SmartQuant.Controls.BarChart.BarChart2();
this.chart3 = new SmartQuant.FinChart.Chart();
this.chart3.ActionType = ChartActionType.Cross;
var nb = new Notebook();
nb.Add(barChart);
nb.SetTabLabelText(barChart, "Chart");
nb.Add(barChart2);
nb.SetTabLabelText(barChart2, "Chart(Gapless)");
nb.Add(chart3);
nb.SetTabLabelText(chart3, "Performance");
Add(nb);
SetDefaultSize(624, 362);
DeleteEvent += (sender, e) =>
{
Application.Quit();
e.RetVal = true;
};
var f = new Framework("Demo", true);
f.IsDisposable = false;
f.GroupDispatcher = new GroupDispatcher(f);
this.barChart.Init(f, null, null);
this.barChart2.Init(f, null, null);
this.barChart.ResumeUpdates();
this.barChart2.ResumeUpdates();
GLib.Timeout.Add(500, new TimeoutHandler(delegate
{
barChart.UpdateGUI();
barChart2.UpdateGUI();
return true;
}));
// Until the framework is created, We cannot show them
ShowAll();
}