Skip to content

Commit 89956c8

Browse files
Moved converters into "internal" namespace
1 parent 2a99dc4 commit 89956c8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/MaterialDesignThemes.Wpf/Converters/TextBoxHorizontalScrollBarMarginConverter.cs renamed to src/MaterialDesignThemes.Wpf/Converters/Internal/TextBoxHorizontalScrollBarMarginConverter.cs

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

4-
namespace MaterialDesignThemes.Wpf.Converters;
4+
namespace MaterialDesignThemes.Wpf.Converters.Internal;
55

66
public class TextBoxHorizontalScrollBarMarginConverter : IMultiValueConverter
77
{

src/MaterialDesignThemes.Wpf/Converters/TextBoxHorizontalScrollBarWidthConverter.cs renamed to src/MaterialDesignThemes.Wpf/Converters/Internal/TextBoxHorizontalScrollBarWidthConverter.cs

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

4-
namespace MaterialDesignThemes.Wpf.Converters;
4+
namespace MaterialDesignThemes.Wpf.Converters.Internal;
55

66
public class TextBoxHorizontalScrollBarWidthConverter : IMultiValueConverter
77
{

src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.TextBox.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848
<converters:ThicknessCloneConverter x:Key="HelperTextMarginConverter" CloneEdges="Left,Right" />
4949
<converters:MathConverter x:Key="DivisionConverter" Operation="Divide" Offset="1.5" />
5050
<converters:ThicknessCloneConverter x:Key="ThicknessCloneConverter" CloneEdges="All" AdditionalOffsetBottom="-1" />
51-
<converters:TextBoxHorizontalScrollBarMarginConverter x:Key="TextBoxHorizontalScrollBarMarginConverter" />
52-
<converters:TextBoxHorizontalScrollBarWidthConverter x:Key="TextBoxHorizontalScrollBarWidthConverter" />
51+
<convertersInternal:TextBoxHorizontalScrollBarMarginConverter x:Key="TextBoxHorizontalScrollBarMarginConverter" />
52+
<convertersInternal:TextBoxHorizontalScrollBarWidthConverter x:Key="TextBoxHorizontalScrollBarWidthConverter" />
5353
</Style.Resources>
5454

5555
<Setter Property="AutomationProperties.Name" Value="{Binding Path=(wpf:HintAssist.Hint), RelativeSource={RelativeSource Self}}" />

0 commit comments

Comments
 (0)