本文整理汇总了C#中Poderosa.Connection.ConnectionTag.FormatFrameText方法的典型用法代码示例。如果您正苦于以下问题:C# ConnectionTag.FormatFrameText方法的具体用法?C# ConnectionTag.FormatFrameText怎么用?C# ConnectionTag.FormatFrameText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Poderosa.Connection.ConnectionTag
的用法示例。
在下文中一共展示了ConnectionTag.FormatFrameText方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RefreshConnection
public void RefreshConnection(ConnectionTag tag)
{
if(tag.Button==null) return;
SetButtonText(tag.Button as TabBarButton, GEnv.Connections.IndexOf(tag), tag);
((TabBarButton)tag.Button).Image = GetTabIcon(tag);
_tabToolTip.SetToolTip(tag.Button, tag.FormatFrameText());
}
示例2: CreateNewButton
private Control CreateNewButton(ConnectionTag ct)
{
TabBarButton b = new TabBarButton();
ct.Button = b;
SetButtonText(b, Controls.Count-1, ct);
_tabToolTip.SetToolTip(b, ct.FormatFrameText());
//b.Image = _imageList.Images[(int)e.item.Type];
b.Tag = ct;
b.Font = _basicFont;
b.Width = GetNecessaryButtonWidth(b);
b.Visible = true;
b.TabStop = false;
b.Click += new EventHandler(this.OnButtonClick);
b.MouseDown += new MouseEventHandler(OnMouseDown);
b.MouseUp += new MouseEventHandler(OnMouseUp);
b.MouseMove += new MouseEventHandler(OnMouseMove);
return b;
}
示例3: AdjustTitle
public void AdjustTitle(ConnectionTag tag)
{
string title = "";
if(tag!=null) {
title = tag.FormatFrameText() + " - ";
}
if(GApp.MacroManager.MacroIsRunning) {
title += String.Format(GApp.Strings.GetString("Caption.GFrame.MacroIsRunning"), GApp.MacroManager.CurrentMacro.Title);
}
title += "Poderosa";
this.Text = title;
}