added LoggingModule
This commit is contained in:
17
PhotoRenamer.Logging/Views/ViewA.xaml
Normal file
17
PhotoRenamer.Logging/Views/ViewA.xaml
Normal file
@ -0,0 +1,17 @@
|
||||
<UserControl
|
||||
x:Class="PhotoRenamer.Logging.Views.ViewA"
|
||||
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:prism="http://prismlibrary.com/"
|
||||
xmlns:viewModels="clr-namespace:PhotoRenamer.Logging.ViewModels"
|
||||
d:DataContext="{d:DesignInstance viewModels:ViewAViewModel}"
|
||||
d:DesignHeight="300"
|
||||
d:DesignWidth="300"
|
||||
prism:ViewModelLocator.AutoWireViewModel="True"
|
||||
mc:Ignorable="d">
|
||||
<GroupBox Margin="5" Header="Log">
|
||||
<ListView />
|
||||
</GroupBox>
|
||||
</UserControl>
|
13
PhotoRenamer.Logging/Views/ViewA.xaml.cs
Normal file
13
PhotoRenamer.Logging/Views/ViewA.xaml.cs
Normal file
@ -0,0 +1,13 @@
|
||||
namespace PhotoRenamer.Logging.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for ViewA.xaml
|
||||
/// </summary>
|
||||
public partial class ViewA
|
||||
{
|
||||
public ViewA()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user