<UserControl x:Class="JIMS.View.Settings.Settings"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Name="SettingsWindow">
<Border Style="{StaticResource WindowBorderStyle}" Height="100">
<StackPanel Orientation="Vertical">
<my:TitleBar Title="settings"/>
<StackPanel Orientation="Horizontal">
<StackPanel Orientation="Horizontal">
<StackPanel Orientation="Vertical" Margin="10,0,0,0">
<Label>Theme :</Label>
</StackPanel>
<StackPanel Orientation="Vertical" Width="200" Margin="0,0,10,0">
<ComboBox Name="cmbTheme" ItemsSource="{Binding Path=Themes}" ></ComboBox>
</StackPanel>
</StackPanel>
</StackPanel>
</StackPanel>
</Border>
</UserControl>
これは私の UserControl で、Width プロパティと Height プロパティを設定していません。しかし、一部の分離コードでは、この UserControl の高さと幅を取得したいのですが、取得できません。
double width=uctrl.Width;
それは私NaN
にしばらく与えます
double width=ctrl.ActualWidth;
私に与える0
幅と高さが必要なコード
private void OpenChild(UserControl ctrl)
{
bool alreadyExist = false;
ctrl.Uid = ctrl.Name;
foreach (UIElement child in JIMSCanvas.Children)
{
if (child.Uid == ctrl.Uid)
{
alreadyExist = true;
Canvas.SetZIndex(child, GetMaxZIndex);
}
}
if (!alreadyExist)
{
JIMSCanvas.Children.Add(ctrl);
JIMSCanvas.InvalidateMeasure();
double top = (JIMSCanvas.ActualHeight - ctrl.Height) / 2;
double left = (JIMSCanvas.ActualWidth - ctrl.Width) / 2;
Canvas.SetLeft(ctrl, left);
Canvas.SetTop(ctrl, top);
}
}