Shape.ContainsFocus 属性
获取指示 line 或 shape 控件是否的值当前具有输入焦点。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
<BrowsableAttribute(False)> _
Public ReadOnly Property ContainsFocus As Boolean
[BrowsableAttribute(false)]
public bool ContainsFocus { get; }
[BrowsableAttribute(false)]
public:
property bool ContainsFocus {
bool get ();
}
[<BrowsableAttribute(false)>]
member ContainsFocus : bool
function get ContainsFocus () : boolean
属性值
类型:System.Boolean
true ,如果控件当前具有输入焦点;否则, false。
备注
对于 LineShape、 OvalShape和 RectangleShape 控件, ContainsFocus 属性的值是与 Focused 属性。
若要为控件提供输入焦点,请使用 Focus 或 Select 方法。
示例
下面的示例报告指定的 Shape 当前是否具有输入焦点。
Public Sub ReportFocus(ByVal shape As Microsoft.VisualBasic.PowerPacks.Shape)
' Determine whether the Shape has focus.
If shape.ContainsFocus Then
MsgBox(shape.Name & " has focus.")
End If
End Sub
public void ReportFocus(Microsoft.VisualBasic.PowerPacks.Shape shape)
{
// Determine whether the Shape has focus.
if (shape.ContainsFocus)
{
MessageBox.Show(shape.Name + " has focus.");
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
如何:使用 LineShape 控件绘制直线 (Visual Studio)