在 c# WPF 中,我应该在哪里更改窗口大小

本文关键字:在哪里 窗口大小 我应该 WPF | 更新日期: 2023-09-27 18:35:45

我有一个WPF窗口。其 xaml 文件由用户控件标记生成:

<UserControl x:Class="DeploymentTool.View.ToolPanelMappingView"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
         xmlns:sys="clr-namespace:System;assembly=mscorlib"
         ...
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="1300"
         >

显然,我将宽度大小更改为什么(在我的情况下为 1300)并不重要,它不会更改窗口大小。

如何更改窗口的宽度?

在 c# WPF 中,我应该在哪里更改窗口大小

您的控件似乎托管在另一个窗口中。找到托管窗口并根据需要进行更改。

也许你可以试试史努比来鳍鱼,并玩弄它的属性,以获得你想要的外行。CodePlex 上的窥探

如果我理解正确,你的 xaml 可能是这样的:

<Window x:Class="WpfApplication1.SomeWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="SomeWindow" Height="700" Width="1300">
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="*"/>
        <RowDefinition Height="2*"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="2*"/>
        <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <UserControl            
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
     xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
     xmlns:sys="clr-namespace:System;assembly=mscorlib"         
     mc:Ignorable="d" 
     d:DesignHeight="300" d:DesignWidth="30" Background="Green" Grid.Column="1" Grid.Row="1"></UserControl>
</Grid>

因此,要更改UserControl的宽度和高度,您可以通过在"网格"中添加行或列来完成。