This commit is contained in:
Wiesław Šoltés 2016-05-01 12:38:40 +02:00
Родитель 6dc831768b
Коммит 0cb2194119
3 изменённых файлов: 4 добавлений и 5 удалений

Просмотреть файл

@ -4,13 +4,12 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SpiroNet.Wpf"
xmlns:views="clr-namespace:SpiroNet.Wpf.Views"
mc:Ignorable="d"
Title="SpiroNet.Wpf" Height="720" Width="1040"
Background="White"
WindowStartupLocation="CenterScreen"
SnapsToDevicePixels="True" UseLayoutRounding="True"
TextOptions.TextFormattingMode="Display">
<Grid>
<local:EditorView/>
</Grid>
<views:EditorView/>
</Window>

Просмотреть файл

@ -1,4 +1,4 @@
<UserControl x:Class="SpiroNet.Wpf.EditorView"
<UserControl x:Class="SpiroNet.Wpf.Views.EditorView"
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"

Просмотреть файл

@ -27,7 +27,7 @@ using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace SpiroNet.Wpf
namespace SpiroNet.Wpf.Views
{
public partial class EditorView : UserControl
{