Shape.Show 方法
显示形状给用户。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
Public Sub Show
public void Show()
public:
void Show()
member Show : unit -> unit
public function Show()
备注
显示控件等效于将 Visible 属性设置为 true。 在 Show 调用方法后, Visible 属性返回 true 的值,直到 Hide 方法调用或,直到 Visible 设置为 false。
示例
下面的示例演示如何使用 Show 和 Hide 方法添加到两个 difference 形状之间切换在运行时。 此示例要求您具有一个 RectangleShape 控件 RectangleShape1 的、名为在窗体的 OvalShape1 的一个 OvalShape 控件。 为了获得最佳结果,请使控件大小并确定某个其他的顶部。
Private Sub Form1_Load() Handles MyBase.Load
' Hide the oval.
OvalShape1.Hide()
End Sub
Private Sub Shapes_Click() Handles RectangleShape1.Click,
OvalShape1.Click
If OvalShape1.Visible = True Then
' Hide the oval.
OvalShape1.Hide()
' Show the rectangle.
RectangleShape1.Show()
Else
' Hide the rectangle.
RectangleShape1.Hide()
' Show the oval.
OvalShape1.Show()
End If
End Sub
private void Form1_Load(System.Object sender, System.EventArgs e)
{
// Hide the oval.
ovalShape1.Hide();
}
private void Shapes_Click(System.Object sender, System.EventArgs e)
{
if (ovalShape1.Visible == true)
// Hide the oval.
{
ovalShape1.Hide();
// Show the rectangle.
rectangleShape1.Show();
}
else
{
// Hide the rectangle.
rectangleShape1.Hide();
// Show the oval.
ovalShape1.Show();
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
如何:使用 LineShape 控件绘制直线 (Visual Studio)