在button_click事件中绘图会使按钮消失?

时间:2012-04-09 20:04:04

标签: wpf button

我仍然是WPF的新手,在使用它时仍然遇到一些问题。我点击按钮时想画一些圆圈。我在button_click的方法中绘制了绘制圆圈的说明,这意味着当我点击按钮时应绘制圆圈。圆圈绘制正确,但我放在表单中的所有按钮和工具都消失了。我想这是因为我正在绘制按钮所在的网格。那么有没有办法在某个边界或某些东西中绘制圆圈而没有任何东西消失?

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="449" Width="677">
<Grid Height="297" Width="460">
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="181*" />
        <ColumnDefinition Width="279*" />
    </Grid.ColumnDefinitions>
    <Button Content="Button" Height="31" HorizontalAlignment="Left" Margin="185,-53,0,0" Name="button1" VerticalAlignment="Top" Width="94" Click="button1_Click" Grid.Column="1" />
</Grid>

0 个答案:

没有答案