Я хочу установить размер для UserControl для разработки моего приложения. Но предварительный просмотр XAML, вероятно, игнорирует свойства d:DesingHeight и d:DesingWidth. Я могу задать свойства Height и Width, но это неудобно, поскольку мне нужно будет удалить их перед запуском приложения.
d:DesingHeight
d:DesingWidth
Height
Width
Мой код XAML:
<UserControl x:Class="CIevlev.ClinicApp.DesktopClient.ControlDoctorService" 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:local="clr-namespace:CIevlev.ClinicApp.DesktopClient" xmlns:viewModel="clr-namespace:SIevlev.ClinicApp.Interfaces.ViewModel;assembly=SIevlev.ClinicApp.Interfaces" mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"> <Grid> </Grid> </UserControl>
"d:" работает в Visual Studio. Я хочу работать в Visual Studio: (
d:
Как я могу решить эту проблему?