我寫了一個顯示客戶網格的簡單WPF窗口。WPF - 在th中看不到按鈕查看設計
在我添加了一個按鈕「添加新客戶的網格底部,但它融合成窗口的背景,我不能看到它在景觀設計
這是代碼:
<Window x:Class="NihulMlay._1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title=" Customers " Height="120" Width="600">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="300" />
<ColumnDefinition Width="300" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="40" />
</Grid.RowDefinitions>
<Button FontWeight="Bold">Customer name</Button>
<Button Grid.Column="1" FontWeight="Bold">Name</Button>
<Label Grid.Row="1"></Label>
<Label Grid.Column="1" Grid.Row="1"></Label>
<Button Grid.ColumnSpan="2" Content="Add a new Customer" HorizontalAlignment="Left" Height="100" Margin="270,114,0,-173" Grid.Row="1" VerticalAlignment="Top" Width="75"/>
</Grid>
</Window>
感謝。
Windows和Visual Studio版本,你用什麼?我可以在VS 2012中看到你的Button很好。 – Ian