Ok, Just Do It!
BIN
docs/additional-datagrid.png
Normal file
|
After Width: | Height: | Size: 98 KiB |
BIN
docs/additional-frame.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
docs/additional-listview.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
docs/additional-propertygrid.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
docs/additional-treeview.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
docs/classic-theme.png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
docs/datagrid.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
22
docs/help/apply-themes.md
Normal file
@@ -0,0 +1,22 @@
|
||||
# Apply themes with App.xaml
|
||||
|
||||
`App.xaml`
|
||||
```xml
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="/brightsharp;component/generic.xaml" />
|
||||
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
</ResourceDictionary>
|
||||
```
|
||||
|
||||
# Apply themes by ThemeManager
|
||||
|
||||
Use enumeration at singleton
|
||||
```c#
|
||||
ThemeManager.CurrentTheme = ColorThemes.Classic;
|
||||
```
|
||||
|
||||
## NOTE
|
||||
It is recommended use `Background="{DynamicResource WindowBackgroundBrush}"` for Window markup
|
||||
9
docs/help/htmleditor.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# CKEditor (HtmlEditor) usage example
|
||||
|
||||
Documentation in progress...
|
||||
|
||||
For more info see `BrightSharp.Demo` project. How to setup video https://youtu.be/fQvdY69fQDw
|
||||
|
||||
|
||||
## HtmlEditor (CKEditor) Screenshot
|
||||

|
||||
12
docs/help/zoomcontrol.md
Normal file
@@ -0,0 +1,12 @@
|
||||
### ZoomControl usage example
|
||||
|
||||
`DraggableExtender` for `ZoomControl`. Example:
|
||||
```xaml
|
||||
<bsCtrl:ZoomControl xmlns:bsCtrl="http://schemas.brightsharp.com/controls"
|
||||
xmlns:bs="http://schemas.brightsharp.com/developer">
|
||||
<Canvas>
|
||||
<Ellipse bs:DraggableExtender.CanDrag="true" Canvas.Left="37" Canvas.Top="110" Width="100" Height="100" Fill="Blue" />
|
||||
<Rectangle bs:DraggableExtender.CanDrag="true" Canvas.Left="193" Canvas.Top="55" Width="100" Height="100" Fill="Black" />
|
||||
</Canvas>
|
||||
</bsCtrl:ZoomControl>
|
||||
```
|
||||
BIN
docs/htmleditor.png
Normal file
|
After Width: | Height: | Size: 104 KiB |
BIN
docs/logo.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
docs/theme-blue.png
Normal file
|
After Width: | Height: | Size: 98 KiB |
BIN
docs/theme-darkblue.png
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
docs/theme-devlab.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
docs/theme-silver.png
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
docs/theme-standard.png
Normal file
|
After Width: | Height: | Size: 74 KiB |