Chnaged window height from 400px to 300px

As it's using 200x300 further in the tutorial
This commit is contained in:
Whitebrim 2023-06-15 15:30:07 +03:00 коммит произвёл GitHub
Родитель c52983ed27
Коммит 0ff7a18a3e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -73,7 +73,7 @@ Edit the contents of `Views/TodoListView.axaml` to contain the following:
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"
mc:Ignorable="d" d:DesignWidth="200" d:DesignHeight="400"
mc:Ignorable="d" d:DesignWidth="200" d:DesignHeight="300"
x:Class="Todo.Views.TodoListView">
<DockPanel>
<Button DockPanel.Dock="Bottom"
@ -110,12 +110,12 @@ The next XML namespace is `xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml
The following two namespaces are used to communicate designer-specific information, which is specified next:
```markup
mc:Ignorable="d" d:DesignWidth="200" d:DesignHeight="400"
mc:Ignorable="d" d:DesignWidth="200" d:DesignHeight="300"
```
`mc:Ignorable="d"` tells the XAML engine that entries beginning with `d:` can be ignored and you can pretty much ignore it too!
The `d:DesignWidth="200"` and `d:DesignHeight="400"` attributes tell the XAML designer to display the content with a size of 200x400 pixels. They're ignored at runtime.
The `d:DesignWidth="200"` and `d:DesignHeight="300"` attributes tell the XAML designer to display the content with a size of 200x300 pixels. They're ignored at runtime.
```markup
x:Class="Todo.Views.TodoListView"