https://github.com/dunward/odinvision
WPF WindowTheme Easy to Use
https://github.com/dunward/odinvision
csharp dotnet-core wpf
Last synced: 9 months ago
JSON representation
WPF WindowTheme Easy to Use
- Host: GitHub
- URL: https://github.com/dunward/odinvision
- Owner: dunward
- License: mit
- Created: 2018-09-17T10:39:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-25T03:11:53.000Z (about 6 years ago)
- Last Synced: 2024-08-31T22:01:48.442Z (over 1 year ago)
- Topics: csharp, dotnet-core, wpf
- Language: C#
- Homepage:
- Size: 1.38 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

# Warning
This project is in refactoring. You can't use this library now.
## OdinWindowTheme
OdinWindowTheme is support your wpf application window design.

## Quick Start
First. Create WPF app and add reference OdinTheme.dll
Second. Add ``xmlns:o="clr-namespace:OdinTheme;assembly=OdinTheme"`` like this
App.xaml
```
```
MainWindow.xaml
```
```
Third. Add namespace OdinTheme and Change OdinWindow
```
using OdinTheme;
namespace WpfApp
{
public partial class MainWindow : OdinWindow
{
public MainWindow()
{
InitializeComponent();
}
}
}
```