Skip to content

Commit

Permalink
Merge pull request #401 from joecare99/CSharpBible
Browse files Browse the repository at this point in the history
C sharp bible
  • Loading branch information
joecare99 authored May 12, 2024
2 parents 6b9482c + b0122ef commit 39faa37
Show file tree
Hide file tree
Showing 38 changed files with 155 additions and 90 deletions.
1 change: 1 addition & 0 deletions CSharpBible/Graphics/All_Graphics/All_Graphics_net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<ProjectReference Include="..\MVVM_Converter_ImgGrid\MVVM_Converter_ImgGrid.csproj" />
<ProjectReference Include="..\MVVM_ImageHandling\MVVM_ImageHandling_net.csproj" />
<ProjectReference Include="..\MVVM_Lines_on_Grid2\MVVM_Lines_on_Grid2.csproj" />
<ProjectReference Include="..\Polyline\Polyline_net.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
14 changes: 14 additions & 0 deletions CSharpBible/Graphics/All_Graphics/Models/AllExampleModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,20 @@ public partial class AllExampleModel : ObservableObject, ITemplateModel

public List<ExItem> Examples { get; } = [
("CanvasWPF", typeof(CanvasWPF.Views.CanvasWPFView), null),
("CanvasWPF2", typeof(CanvasWPF_CT.Views.CanvasWPFView), null),
("CanvasWPF3", typeof(CanvasWPF2_ItemTemplateSelector.Views.CanvasWPFView), null),
("CanvasWPF4", typeof(CanvasWPF2_CTItemTemplateSelector.Views.CanvasWPFView), null),
("DynamicShape", typeof(DynamicShapeWPF.Views.DynamicShapeView), null),
("DrawGrid_CT", typeof(MVVM_Converter_CTDrawGrid.Views.PlotFrame), null),
("DrawGrid2_CT", typeof(MVVM_Converter_CTDrawGrid2.Views.PlotFrame), null),
("ImgGrid_CT", typeof(MVVM_Converter_CTImgGrid.Views.PlotFrame), null),
("DrawGrid", typeof(MVVM_Converter_DrawGrid.Views.PlotFrame), null),
("DrawGrid2", typeof(MVVM_Converter_DrawGrid2.View.PlotFrame), null),
("ImgGrid", typeof(MVVM_Converter_ImgGrid.Views.ImgGridView), null),
("ImgGrid2", typeof(MVVM_Converter_ImgGrid2.Views.ImgGridView), null),
("ImageHandling", typeof(MVVM_ImageHandling.Views.TemplateView), null),
("Lines_on_Grid", typeof(MVVM_Lines_on_Grid2.View.PlotFrame), null),
("PolyLine", typeof(Polyline.Views.PolyLineView), null),



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,19 @@
<ProjectReference Include="$(UpDir)\Libraries\MVVM_BaseLib\MVVM_BaseLib.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Windows.Controls;
using System.Xml.Linq;

namespace CanvasWPF2_CTItemTemplateSelector.View.DataSelector
namespace CanvasWPF2_CTItemTemplateSelector.Views.DataSelector
{
/// <summary>
/// Class ItemTemplateSelector.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Window x:Class="CanvasWPF2_CTItemTemplateSelector.View.MainWindow"
<Window x:Class="CanvasWPF2_CTItemTemplateSelector.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:CanvasWPF2_CTItemTemplateSelector"
xmlns:mvvm="clr-namespace:CanvasWPF2_CTItemTemplateSelector.ViewModel"
xmlns:ds="clr-namespace:CanvasWPF2_CTItemTemplateSelector.View.DataSelector"
xmlns:ds="clr-namespace:CanvasWPF2_CTItemTemplateSelector.Views.DataSelector"
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
mc:Ignorable="d"
Title="Dynamic Shapes" Height="450" Width="800">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace CanvasWPF2_CTItemTemplateSelector.View
namespace CanvasWPF2_CTItemTemplateSelector.Views
{
/// <summary>
/// Interaction logic for MainWindow.xaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,19 @@
<ProjectReference Include="$(UpDir)\Libraries\MVVM_BaseLib\MVVM_BaseLib.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -42,28 +42,28 @@ private enum SelectedShape { None, Circle, Rectangle }
/// Gets or sets the dc select shape.
/// </summary>
/// <value>The dc select shape.</value>
public DelegateCommand dcSelectShape { get; set; }
public DelegateCommand SelectShapeCommand { get; set; }
/// <summary>
/// Gets or sets the dc create shape.
/// </summary>
/// <value>The dc create shape.</value>
public DelegateCommand dcCreateShape { get; set; }
public DelegateCommand CreateShapeCommand { get; set; }
/// <summary>
/// Gets or sets the dc delete shape.
/// </summary>
/// <value>The dc delete shape.</value>
public DelegateCommand dcDeleteShape { get; set; }
public DelegateCommand DeleteShapeCommand { get; set; }

/// <summary>
/// Gets or sets the dc key down.
/// </summary>
/// <value>The dc key down.</value>
public DelegateCommand dcKeyDown { get; set; }
public DelegateCommand KeyDownCommand { get; set; }
/// <summary>
/// Gets or sets the dc key up.
/// </summary>
/// <value>The dc key up.</value>
public DelegateCommand dcKeyUp { get; set; }
public DelegateCommand KeyUpCommand { get; set; }
#endregion

#region Methods
Expand All @@ -72,24 +72,24 @@ private enum SelectedShape { None, Circle, Rectangle }
/// </summary>
public MainWindowViewModel()
{
dcCreateShape = new DelegateCommand(
CreateShapeCommand = new DelegateCommand(
(o) => DoCreateShape(o),
(o) => _editShape != null
);

dcSelectShape = new DelegateCommand(
SelectShapeCommand = new DelegateCommand(
(o) => DoSelectShape(o),
(o) => true
);

dcDeleteShape = new DelegateCommand(
DeleteShapeCommand = new DelegateCommand(
(o) => DoDeleteShape(o),
(o) => true
);

dcKeyDown = new DelegateCommand((o) => { DataText = $"Data: Down {o}"; });
KeyDownCommand = new DelegateCommand((o) => { DataText = $"Data: Down {o}"; });

dcKeyUp = new DelegateCommand((o) => { DataText = $"Data: Up {o}"; });
KeyUpCommand = new DelegateCommand((o) => { DataText = $"Data: Up {o}"; });

for (int i = 0; i < 5; i++)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Windows;
using System.Windows.Controls;

namespace CanvasWPF2_ItemTemplateSelector.View.DataSelector
namespace CanvasWPF2_ItemTemplateSelector.Views.DataSelector
{
/// <summary>
/// Class ItemTemplateSelector.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Window x:Class="CanvasWPF2_ItemTemplateSelector.View.MainWindow"
<Window x:Class="CanvasWPF2_ItemTemplateSelector.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:CanvasWPF2_ItemTemplateSelector"
xmlns:mvvm="clr-namespace:CanvasWPF2_ItemTemplateSelector.ViewModel"
xmlns:ds="clr-namespace:CanvasWPF2_ItemTemplateSelector.View.DataSelector"
xmlns:ds="clr-namespace:CanvasWPF2_ItemTemplateSelector.Views.DataSelector"
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
mc:Ignorable="d"
Title="Dynamic Shapes" Height="450" Width="800">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using CanvasWPF2_ItemTemplateSelector.ViewModel;
using System.Windows;

namespace CanvasWPF2_ItemTemplateSelector.View
namespace CanvasWPF2_ItemTemplateSelector.Views
{
/// <summary>
/// Interaction logic for MainWindow.xaml
Expand Down
2 changes: 1 addition & 1 deletion CSharpBible/Graphics/CanvasWPF_CT/Views/CanvasWPFView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
xmlns:local="clr-namespace:CanvasWPF_CT"
xmlns:mvvm="clr-namespace:CanvasWPF_CT.ViewModel"
mc:Ignorable="d"
Title="Dynamic Shapes" Height="450" Width="800">
Title="Dynamic Shapes" d:Height="450" d:Width="800">
<Page.DataContext>
<mvvm:MainWindowViewModel />
</Page.DataContext>
Expand Down
18 changes: 18 additions & 0 deletions CSharpBible/Graphics/Graphics.sln
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MVVM_Converter_ImgGrid2", "
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "All_Graphics_net", "All_Graphics\All_Graphics_net.csproj", "{D9D4BDBD-9473-40DD-804E-92A63643D5DF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Polyline", "Polyline\Polyline.csproj", "{26EC1A76-255A-42E5-9CF5-FC735660858D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Polyline2", "Polyline\Polyline2.csproj", "{070E91DD-75E9-4186-A773-A2FB576AD1AB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Polyline_net", "Polyline\Polyline_net.csproj", "{F82089E3-517C-47E9-B56E-656EC4047C97}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -177,6 +183,18 @@ Global
{D9D4BDBD-9473-40DD-804E-92A63643D5DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D9D4BDBD-9473-40DD-804E-92A63643D5DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D9D4BDBD-9473-40DD-804E-92A63643D5DF}.Release|Any CPU.Build.0 = Release|Any CPU
{26EC1A76-255A-42E5-9CF5-FC735660858D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{26EC1A76-255A-42E5-9CF5-FC735660858D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{26EC1A76-255A-42E5-9CF5-FC735660858D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{26EC1A76-255A-42E5-9CF5-FC735660858D}.Release|Any CPU.Build.0 = Release|Any CPU
{070E91DD-75E9-4186-A773-A2FB576AD1AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{070E91DD-75E9-4186-A773-A2FB576AD1AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{070E91DD-75E9-4186-A773-A2FB576AD1AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{070E91DD-75E9-4186-A773-A2FB576AD1AB}.Release|Any CPU.Build.0 = Release|Any CPU
{F82089E3-517C-47E9-B56E-656EC4047C97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F82089E3-517C-47E9-B56E-656EC4047C97}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F82089E3-517C-47E9-B56E-656EC4047C97}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F82089E3-517C-47E9-B56E-656EC4047C97}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion CSharpBible/Graphics/Graphics_net.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<BaseOutputPath>$(UpDir)\..\bin\$(MSBuildProjectName)\</BaseOutputPath>
<BaseIntermediateOutputPath>$(UpDir)\..\obj.net\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<RootNamespace>$(MSBuildProjectName.Replace(".","_").Replace("_net",""))</RootNamespace>
<LangVersion>12.0</LangVersion>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<Company>JC-Soft</Company>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Collections.ObjectModel;
using System.Windows;

namespace MVVM_Converter_CTDrawGrid.View.Converter
namespace MVVM_Converter_CTDrawGrid.Views.Converter
{
/// <summary>
/// Class WindowPortToTileDisplay.
Expand Down
22 changes: 11 additions & 11 deletions CSharpBible/Graphics/MVVM_Converter_CTDrawGrid/Views/PlotFrame.xaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Page x:Class="MVVM_Converter_CTDrawGrid.View.PlotFrame"
<Page x:Class="MVVM_Converter_CTDrawGrid.Views.PlotFrame"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:MVVM_Converter_CTDrawGrid.View"
xmlns:vc="clr-namespace:MVVM_Converter_CTDrawGrid.View.Converter"
xmlns:local="clr-namespace:MVVM_Converter_CTDrawGrid.Views"
xmlns:vc="clr-namespace:MVVM_Converter_CTDrawGrid.Views.Converter"
xmlns:mvvm="clr-namespace:MVVM_Converter_CTDrawGrid.ViewModel"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Expand Down Expand Up @@ -224,16 +224,16 @@
</DrawingGroup>
</DrawingBrush.Drawing>
</DrawingBrush>
<!--ImageBrush ImageSource="/View/WernerTiles.png" Stretch="Uniform" Viewbox="0,32,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/View/WernerTiles.png" Stretch="Uniform" Viewbox="0,64,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/View/WernerTiles.png" Stretch="Uniform" Viewbox="0,160,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/View/WernerTiles.png" Stretch="Uniform" Viewbox="0,128,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/View/WernerTiles.png" Stretch="Uniform" Viewbox="0,192,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/View/WernerTiles.png" Stretch="Uniform" Viewbox="0,96,32,32" ViewboxUnits="Absolute"/-->
<!--ImageBrush ImageSource="/Views/WernerTiles.png" Stretch="Uniform" Viewbox="0,32,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/Views/WernerTiles.png" Stretch="Uniform" Viewbox="0,64,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/Views/WernerTiles.png" Stretch="Uniform" Viewbox="0,160,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/Views/WernerTiles.png" Stretch="Uniform" Viewbox="0,128,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/Views/WernerTiles.png" Stretch="Uniform" Viewbox="0,192,32,32" ViewboxUnits="Absolute"/>
<ImageBrush ImageSource="/Views/WernerTiles.png" Stretch="Uniform" Viewbox="0,96,32,32" ViewboxUnits="Absolute"/-->
<DrawingBrush x:Name="Werner" Viewbox="0,0,100,100" ViewboxUnits="Absolute">
<DrawingBrush.Drawing>
<DrawingGroup>
<!--ImageDrawing ImageSource="/View/WernerTiles.png" Rect="0,-400,100,701"/>
<!--ImageDrawing ImageSource="/Views/WernerTiles.png" Rect="0,-400,100,701"/>
<GeometryDrawing x:Name="Canvas">
<GeometryDrawing.Brush>
<SolidColorBrush Color="White" Opacity="0.7"/>
Expand Down Expand Up @@ -336,7 +336,7 @@
<DrawingBrush x:Name="Meister" Viewbox="0,0,100,100" ViewboxUnits="Absolute">
<DrawingBrush.Drawing>
<DrawingGroup>
<!--ImageDrawing ImageSource="/View/WernerTiles.png" Rect="0,-600,100,701"/>
<!--ImageDrawing ImageSource="/Views/WernerTiles.png" Rect="0,-600,100,701"/>
<GeometryDrawing x:Name="Canvas">
<GeometryDrawing.Brush>
<SolidColorBrush Color="White" Opacity="0.3"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using MVVM_Converter_CTDrawGrid.View.Converter;
using MVVM_Converter_CTDrawGrid.Views.Converter;
using MVVM_Converter_CTDrawGrid.ViewModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;

namespace MVVM_Converter_CTDrawGrid.View
namespace MVVM_Converter_CTDrawGrid.Views
{
/// <summary>
/// Interaktionslogik für PlotFrame.xaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
using System.Collections.ObjectModel;
using System.Windows;

namespace MVVM_Converter_CTDrawGrid2.View.Converter
namespace MVVM_Converter_CTDrawGrid2.Views.Converter
{
/// <summary>
/// Class WindowPortToTileDisplay.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Page x:Class="MVVM_Converter_CTDrawGrid2.View.PlotFrame"
<Page x:Class="MVVM_Converter_CTDrawGrid2.Views.PlotFrame"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:MVVM_Converter_CTDrawGrid2.View"
xmlns:vc="clr-namespace:MVVM_Converter_CTDrawGrid2.View.Converter"
xmlns:local="clr-namespace:MVVM_Converter_CTDrawGrid2.Views"
xmlns:vc="clr-namespace:MVVM_Converter_CTDrawGrid2.Views.Converter"
xmlns:mvvm="clr-namespace:MVVM_Converter_CTDrawGrid2.ViewModel"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
// </copyright>
// <summary></summary>
// ***********************************************************************
using MVVM_Converter_CTDrawGrid2.View.Converter;
using MVVM_Converter_CTDrawGrid2.Views.Converter;
using System.Windows;
using System.Windows.Controls;

namespace MVVM_Converter_CTDrawGrid2.View
namespace MVVM_Converter_CTDrawGrid2.Views
{
/// <summary>
/// Interaktionslogik für PlotFrame.xaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Collections.ObjectModel;
using System.Windows;

namespace MVVM_Converter_CTImgGrid.View.Converter
namespace MVVM_Converter_CTImgGrid.Views.Converter
{
public class WindowPortToTileDisplay : IValueConverter
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Page x:Class="MVVM_Converter_CTImgGrid.View.PlotFrame"
<Page x:Class="MVVM_Converter_CTImgGrid.Views.PlotFrame"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:MVVM_Converter_CTImgGrid.View"
xmlns:vc="clr-namespace:MVVM_Converter_CTImgGrid.View.Converter"
xmlns:local="clr-namespace:MVVM_Converter_CTImgGrid.Views"
xmlns:vc="clr-namespace:MVVM_Converter_CTImgGrid.Views.Converter"
xmlns:mvvm="clr-namespace:MVVM_Converter_CTImgGrid.ViewModel"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using MVVM_Converter_CTImgGrid.View.Converter;
using MVVM_Converter_CTImgGrid.Views.Converter;
using System.Windows;
using System.Windows.Controls;

namespace MVVM_Converter_CTImgGrid.View
namespace MVVM_Converter_CTImgGrid.Views
{
/// <summary>
/// Interaktionslogik für PlotFrame.xaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Collections.ObjectModel;
using System.Windows;

namespace MVVM_Converter_DrawGrid.View.Converter
namespace MVVM_Converter_DrawGrid.Views.Converter
{
/// <summary>
/// Class WindowPortToTileDisplay.
Expand Down
Loading

0 comments on commit 39faa37

Please sign in to comment.