如果已经设置高度,可以设置设计高度

时间:2019-03-13 23:07:19

标签: c# wpf xaml

如果设置了高度,c#可以设置设计高度

<Controls:MetroWindow x:Class="SQL_Reports.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:SQL_Reports"
    xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
    mc:Ignorable="d"
    Width="669"
    Title="Daily SQL Reports" 
    WindowStartupLocation="CenterScreen" 
    ScrollViewer.VerticalScrollBarVisibility="Auto" 
    ScrollViewer.CanContentScroll="True" 
    MinHeight="530" 
    TitleAlignment="Center" 
    MinWidth="677" 
    d:DesignHeight="927" >

我正在尝试设置设计高度,以便可以在Visual Studio中查看我的内容 但是我也希望WPF的高度为530,但是当我将高度设置为530时,设计师将保持为530,而不是将设计高度设置为

1 个答案:

答案 0 :(得分:0)

在设计时,只需摆脱MinHeight =“ 530”。 完成后再次添加。

我不认为您可以同时定义运行时高度和设计高度。 也许您可以尝试使用d:LayoutOverrides属性。