diff --git a/docs/documentation/getting-started.md b/docs/documentation/getting-started.md index c22b1cc8..01576cf0 100644 --- a/docs/documentation/getting-started.md +++ b/docs/documentation/getting-started.md @@ -2,8 +2,7 @@ ## Adding dictionaries -[XAML](https://docs.microsoft.com/en-us/dotnet/desktop/wpf/xaml/?view=netdesktop-6.0), and hence WPF, operate on resource dictionaries. These are HTML-like files that describe the appearance and various aspects of the [controls](https://wpfui.lepo.co/documentation/controls). -**WPF UI** adds its own sets of these files to tell the application how the controls should look like. +[XAML](https://docs.microsoft.com/en-us/dotnet/desktop/wpf/xaml/?view=netdesktop-6.0), and hence WPF, operate on resource dictionaries. These are HTML-like files that describe the appearance and various aspects of the [controls](https://wpfui.lepo.co/documentation/controls). **WPF UI** adds its own sets of these files to tell the application how the controls should look. There should be a file called `App.xaml` in your new application. Add new dictionaries to it using **WPF UI** `ControlsDictionary` and `ThemesDictionary` classes: @@ -20,16 +19,13 @@ There should be a file called `App.xaml` in your new application. Add new dictio - ``` -You can choose a color theme here, -`Light` or `Dark`. +Notice that the `ThemeDictionary` lets you choose a color theme, `Light` or `Dark`. ## The main window -There should be a `MainWindow.xaml` file in your newly created application. -It contains the arrangement of the controls used and their parameters. +There should be a `MainWindow.xaml` file in your newly created application. It contains the arrangement of the controls used and their parameters. ```xml ``` -You can add a new namespace to this window to tell the interpreter that you will be using controls from somewhere, like the **WPF UI** library. +Add the **WPF UI** library namespace to this window to tell the XAML compiler that you will be using controls from the library. ```xml