我有一個WPF窗口。 其XAML文件是建立在用戶控件標籤:我應該在哪裏更改c#WPF中的窗口大小?
<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在我的情況), 它不改變窗口大小。
如何更改我的窗口寬度?
您的控件在開始時可能有一個''標籤。只要找到它,你就可以改變它的大小。 –
不,它沒有標籤。它有一個標記,但沒有寬度屬性... –
user1028741
這樣看,沒有'Window'標記 - 沒有窗口。你的應用中有一個,只需在解決方案中查找。 –