Files

13 lines
428 B
Markdown
Raw Permalink Normal View History

2017-02-18 00:15:59 +03:00
### ZoomControl usage example
2017-02-26 09:26:26 +03:00
Example:
2017-02-18 00:15:59 +03:00
```xaml
2017-02-26 09:26:26 +03:00
<diag:ZoomControl xmlns:diag="http://schemas.brightsharp.com/diagrams"
2017-02-18 00:15:59 +03:00
xmlns:bs="http://schemas.brightsharp.com/developer">
<Canvas>
2017-02-26 09:26:26 +03:00
<Ellipse Canvas.Left="37" Canvas.Top="110" Width="100" Height="100" Fill="Blue" />
<Rectangle Canvas.Left="193" Canvas.Top="55" Width="100" Height="100" Fill="Black" />
2017-02-18 00:15:59 +03:00
</Canvas>
2017-02-26 09:26:26 +03:00
</diag:ZoomControl>
```