Shape.ModifierKeys 属性
获取一个值,该值指示哪一个修改键(Shift、Ctrl 和 Alt)处于按下的状态。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
<BrowsableAttribute(False)> _
Public Shared ReadOnly Property ModifierKeys As Keys
[BrowsableAttribute(false)]
public static Keys ModifierKeys { get; }
[BrowsableAttribute(false)]
public:
static property Keys ModifierKeys {
Keys get ();
}
[<BrowsableAttribute(false)>]
static member ModifierKeys : Keys
static function get ModifierKeys () : Keys
属性值
类型:System.Windows.Forms.Keys
Keys 值的按位组合。默认值为 None。
示例
下面的示例隐藏形状,在按下 ctrl 键按下时,形状单击时。 此示例要求您具有名为在窗体的 RectangleShape1 的 RectangleShape 。
Private Sub RectangleShape1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RectangleShape1.Click
If Shape.ModifierKeys = Keys.Control Then
CType(sender, Shape).Hide()
End If
End Sub
private void rectangleShape1_Click(System.Object sender, System.EventArgs e)
{
if (Shape.ModifierKeys == Keys.Control)
{
((Shape)sender).Hide();
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
如何:使用 LineShape 控件绘制直线 (Visual Studio)