I want to change the size of my MainWindow, and failed in using "Height", "Width", the problem as "WMC0011 Unknown member 'Height' on element 'Window'
Also, when I use member "Title", problem as "WMC0612 The XAML Binary Format (XBF) generator reported syntax error '0x09C4' : Property Not Found"
<Window
x:Class="speech_emotion.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:speech_emotion"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
Title="speech_emotion" Height="50"
mc:Ignorable="d">
</Window>
I want to know how to solve these two problems? How can I change the size of window? My editor is vs2019. Thanks for your help.