diff --git a/wpf/Breadcrumb/Getting-Started.md b/wpf/Breadcrumb/Getting-Started.md
index 3688492eed..6f8c9b3693 100644
--- a/wpf/Breadcrumb/Getting-Started.md
+++ b/wpf/Breadcrumb/Getting-Started.md
@@ -49,11 +49,11 @@ To add the control manually in XAML, follow the given steps:
+ x:Class="HierarchyNavigatorSample.MainWindow"
+ Title="HierarchyNavigator Sample" Height="350" Width="525">
-
-
+
+
{% endhighlight %}
@@ -75,7 +75,7 @@ To add the control manually in C#, follow the given steps:
{% tabs %}
{% highlight C# %}
using Syncfusion.Windows.Tools;
-namespace HierarchicalNavigatorSample
+namespace HierarchyNavigatorSample
{
///
/// Interaction logic for MainWindow.xaml
@@ -85,10 +85,10 @@ namespace HierarchicalNavigatorSample
public MainWindow()
{
InitializeComponent();
- //Creating an instance of HierarchicalNavigator control
- HierarchicalNavigator hierarchicalNavigator = new HierarchicalNavigator();
- //Adding HierarchicalNavigator as window content
- this.Content = hierarchicalNavigator;
+ //Creating an instance of HierarchyNavigator control
+ HierarchyNavigator hierarchyNavigator = new HierarchyNavigator();
+ //Adding HierarchyNavigator as window content
+ this.Content = hierarchyNavigator;
}
}
}
@@ -97,7 +97,7 @@ namespace HierarchicalNavigatorSample
{% endcapture %}
{{ codesnippet2 | OrderList_Indent_Level_1 }}
-
+
## Add items using HierarchyNavigatorItem
diff --git a/wpf/Menu/Command-Binding-and-Command-Target-Support.md b/wpf/Menu/Command-Binding-and-Command-Target-Support.md
index 210d414b53..8c6d0b3966 100644
--- a/wpf/Menu/Command-Binding-and-Command-Target-Support.md
+++ b/wpf/Menu/Command-Binding-and-Command-Target-Support.md
@@ -24,92 +24,122 @@ To use the Command Binding support in an application users have to create a Dele
{% tabs %}
{% highlight xaml %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
{% endhighlight %}
{% highlight C# %}
-
public partial class MainPage : UserControl
-{
- public MainPage()
- {
- InitializeComponent();
- }
- private DelegateCommand myCommand;
- public DelegateCommand MyCommand
- {
- get
- {
- if (myCommand == null)
- {
- myCommand = new DelegateCommand(ApplyTheme);
- }
- return myCommand;
- }
- }
- private void ApplyTheme(object visualStyle)
- {
- SkinManager.SetVisualStyle(this,(Syncfusion.Windows.Controls.Theming.VisualStyle)(visualStyle));
- }
- }
-
-
-
-public class DelegateCommand : ICommand
- {
- public event EventHandler CanExecuteChanged;
- readonly Predicate