Skip to content

Commit 4797a30

Browse files
authored
Cleaning up the namespaces used in the demo app (#2156)
1 parent d038712 commit 4797a30

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+85
-88
lines changed

MainDemo.Wpf/App.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Application x:Class="MaterialDesignColors.WpfExample.App"
1+
<Application x:Class="MaterialDesignDemo.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:smtx="clr-namespace:ShowMeTheXAML;assembly=ShowMeTheXAML"

MainDemo.Wpf/App.xaml.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
using System.Windows;
2-
using System.Windows.Media;
3-
using MaterialDesignThemes.Wpf;
42
using ShowMeTheXAML;
53

6-
namespace MaterialDesignColors.WpfExample
4+
namespace MaterialDesignDemo
75
{
86
/// <summary>
97
/// Interaction logic for App.xaml

MainDemo.Wpf/Buttons.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<UserControl
2-
x:Class="MaterialDesignColors.WpfExample.Buttons"
2+
x:Class="MaterialDesignDemo.Buttons"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
66
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
77
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
88
xmlns:materialDesignConverters="clr-namespace:MaterialDesignThemes.Wpf.Converters;assembly=MaterialDesignThemes.Wpf"
9-
xmlns:wpfExample="clr-namespace:MaterialDesignColors.WpfExample"
9+
xmlns:wpfExample="clr-namespace:MaterialDesignDemo"
1010
xmlns:smtx="clr-namespace:ShowMeTheXAML;assembly=ShowMeTheXAML"
1111
xmlns:system="clr-namespace:System;assembly=mscorlib"
1212
mc:Ignorable="d"

MainDemo.Wpf/Buttons.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System;
22
using System.Windows;
33
using System.Windows.Input;
4-
using MaterialDesignColors.WpfExample.Domain;
4+
using MaterialDesignDemo.Domain;
55

6-
namespace MaterialDesignColors.WpfExample
6+
namespace MaterialDesignDemo
77
{
88
public partial class Buttons
99
{

MainDemo.Wpf/ButtonsViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using MaterialDesignColors.WpfExample.Domain;
1+
using MaterialDesignDemo.Domain;
22
using System;
33
using System.ComponentModel;
44
using System.Windows.Input;
55
using System.Windows.Threading;
66
using MaterialDesignDemo.Domain;
77

8-
namespace MaterialDesignColors.WpfExample
8+
namespace MaterialDesignDemo
99
{
1010
public class ButtonsViewModel : INotifyPropertyChanged
1111
{

MainDemo.Wpf/Cards.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<UserControl
2-
x:Class="MaterialDesignColors.WpfExample.Cards"
2+
x:Class="MaterialDesignDemo.Cards"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

MainDemo.Wpf/Cards.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Windows;
22

3-
namespace MaterialDesignColors.WpfExample
3+
namespace MaterialDesignDemo
44
{
55
public partial class Cards
66
{

MainDemo.Wpf/Chips.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<UserControl
2-
x:Class="MaterialDesignColors.WpfExample.Chips"
2+
x:Class="MaterialDesignDemo.Chips"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

MainDemo.Wpf/Chips.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Windows;
22

3-
namespace MaterialDesignColors.WpfExample
3+
namespace MaterialDesignDemo
44
{
55
public partial class Chips
66
{

MainDemo.Wpf/ColorToolViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Windows.Input;
66
using System.Windows.Media;
77
using MaterialDesignColors;
8-
using MaterialDesignColors.WpfExample.Domain;
8+
using MaterialDesignDemo.Domain;
99
using MaterialDesignDemo.Domain;
1010
using MaterialDesignThemes.Wpf;
1111

0 commit comments

Comments
 (0)