-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathCircleMenuExample.xaml
More file actions
28 lines (28 loc) · 1.53 KB
/
CircleMenuExample.xaml
File metadata and controls
28 lines (28 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<UserControl
x:Class="WPFDevelopers.Samples.ExampleViews.CircleMenuExample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:WPFDevelopers.Samples.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WPFDevelopers.Samples.ExampleViews"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:wd="https://github.com/WPFDevelopersOrg/WPFDevelopers"
d:DesignHeight="450"
d:DesignWidth="800"
mc:Ignorable="d">
<controls:CodeViewer Header="{Binding NavigateMenuItem.Name}">
<StackPanel Background="Black">
<TextBlock
Margin="50,10,0,20"
FontSize="40"
FontWeight="Bold"
Foreground="#A9CC32"
Text="微信公众号:WPFDevelopers" />
<wd:CircleMenu ItemsSource="{Binding MenuArray, RelativeSource={RelativeSource AncestorType=local:CircleMenuExample}}" SelectionChanged="CircleMenu_SelectionChanged" />
</StackPanel>
<controls:CodeViewer.SourceCodes>
<controls:SourceCodeModel CodeSource="/WPFDevelopers.SamplesCode;component/ExampleViews/CircleMenuExample.xaml" CodeType="Xaml" />
<controls:SourceCodeModel CodeSource="/WPFDevelopers.SamplesCode;component/ExampleViews/CircleMenuExample.xaml.cs" CodeType="CSharp" />
</controls:CodeViewer.SourceCodes>
</controls:CodeViewer>
</UserControl>