An open API service indexing awesome lists of open source software.

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

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.

![BlackTheme](./Resources/black-theme.PNG)

## 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();
}
}
}
```