我有一个WPF窗口。 它的xaml文件由UserControl标记构建:
<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)并不重要, 它不会改变窗口大小。
如何更改窗口的宽度?
答案 0 :(得分:1)
您的控件似乎托管在另一个窗口中。 找到托管窗口并根据需要进行更改。
也许你可以尝试使用Snoop来完成父windwo并使用它的属性来获得你想要的输出。 Snoop on CodePlex
答案 1 :(得分:0)
如果我理解正确,你的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的宽度和高度,您可以通过在&#39;网格中添加行或列来实现。