Skip to content

Commit 38a1667

Browse files
authored
Added Customize Menu Items sample
1 parent 019a3c1 commit 38a1667

File tree

18 files changed

+577
-0
lines changed

18 files changed

+577
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.902
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Split_Button_Menuitems", "Split_Button_Add_Menuitem\Split_Button_Menuitems.csproj", "{BFEBD1A2-9878-44FC-963B-E673B4B9967D}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{BFEBD1A2-9878-44FC-963B-E673B4B9967D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{BFEBD1A2-9878-44FC-963B-E673B4B9967D}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{BFEBD1A2-9878-44FC-963B-E673B4B9967D}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{BFEBD1A2-9878-44FC-963B-E673B4B9967D}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {94812E13-698E-4C92-B136-94B992B6C886}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5+
</startup>
6+
</configuration>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Application x:Class="Split_Button_Menuitems.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
StartupUri="MainWindow.xaml">
5+
<Application.Resources>
6+
7+
</Application.Resources>
8+
</Application>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Configuration;
4+
using System.Data;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using System.Windows;
8+
9+
namespace Split_Button_Add_Menuitem
10+
{
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
}
17+
}
350 Bytes
Loading
499 Bytes
Loading
747 Bytes
Loading
125 Bytes
Loading
333 Bytes
Loading
497 Bytes
Loading

0 commit comments

Comments
 (0)