我有一個用戶控件,它只是一個文本這樣的對話框:在我的主窗口WPF用戶控件的寬度和高度不Taknig
<Border x:Name="box"
BorderThickness="0"
BorderBrush="Black"
Background="Black"
Width="200" Height="200">
<Label Content="Hello World"
Height="65" Width="400"
Foreground="White" FontSize="32"
HorizontalAlignment="Center" VerticalAlignment="Center"
HorizontalContentAlignment="Center" />
</Border>
當我創建和實例吧像這樣...
<local:MyBoxControl Width="1000" Height="1000"/>
寬度和高度200x200,如Border
中所定義的,當我希望它創建時爲1000x1000。
這是沿着w/@Joel Lucsy的建議 – Ternary 2012-02-21 18:26:05