加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – 如何在WPF中找到UserControl宽度?

发布时间:2020-12-15 17:25:41 所属栏目:百科 来源:网络整理
导读: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 WindowBorderStyl
<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">
                    <Label>Theme :</Label>                        
                </StackPanel>
                <StackPanel Orientation="Vertical" Width="200" Margin="0,10,0">                        
                    <ComboBox Name="cmbTheme" ItemsSource="{Binding Path=Themes}" ></ComboBox>                        
                </StackPanel>
            </StackPanel>
        </StackPanel>
    </StackPanel>        
</Border>
</UserControl>

这是我的UserControl,我没有设置其宽度和高度属性.
但在一些代码隐藏中,我想得到这个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);
    }
}

解决方法

在一个全新的项目中我写了这个(它在更改窗口时给了我更新的宽度):

<Window xmlns:my="clr-namespace:WpfApplication2"
        x:Class="WpfApplication2.Window32"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window32"
        Height="300"
        Width="300">
  <Grid>
    <my:UserControl3 x:Name="uc3" />
    <TextBlock Height="23"
               HorizontalAlignment="Left"
               Margin="126,121,0"
               Name="textBlock1"
               Text="{Binding ElementName=uc3,Path=ActualWidth}"
               VerticalAlignment="Top" />
  </Grid>
</Window>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读