first edit
This commit is contained in:
7
XLIMS.SP/Views/BookView.xaml
Normal file
7
XLIMS.SP/Views/BookView.xaml
Normal file
@@ -0,0 +1,7 @@
|
||||
<UserControl x:Class="XLIMS.SP.Views.BookView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<Grid>
|
||||
<TextBox Text="{Binding Number,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.SP/Views/BookView.xaml.cs
Normal file
26
XLIMS.SP/Views/BookView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.SP.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для BookView.xaml
|
||||
/// </summary>
|
||||
public partial class BookView : UserControl
|
||||
{
|
||||
public BookView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
8
XLIMS.SP/Views/DivisionView.xaml
Normal file
8
XLIMS.SP/Views/DivisionView.xaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl x:Class="XLIMS.SP.Views.DivisionView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
>
|
||||
<Grid>
|
||||
<TextBox Text="{Binding Kdl,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.SP/Views/DivisionView.xaml.cs
Normal file
26
XLIMS.SP/Views/DivisionView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.SP.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для DivisionView.xaml
|
||||
/// </summary>
|
||||
public partial class DivisionView : UserControl
|
||||
{
|
||||
public DivisionView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
8
XLIMS.SP/Views/MainView.xaml
Normal file
8
XLIMS.SP/Views/MainView.xaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl x:Class="XLIMS.SP.Views.MainView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
>
|
||||
<Grid>
|
||||
<TextBlock Text="{Binding Title}" />
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.SP/Views/MainView.xaml.cs
Normal file
26
XLIMS.SP/Views/MainView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.SP.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для MainView.xaml
|
||||
/// </summary>
|
||||
public partial class MainView : UserControl
|
||||
{
|
||||
public MainView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
8
XLIMS.SP/Views/PersonalView.xaml
Normal file
8
XLIMS.SP/Views/PersonalView.xaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl x:Class="XLIMS.SP.Views.PersonalView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
>
|
||||
<Grid>
|
||||
<TextBox Text="{Binding Person,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.SP/Views/PersonalView.xaml.cs
Normal file
26
XLIMS.SP/Views/PersonalView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.SP.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для PersonalView.xaml
|
||||
/// </summary>
|
||||
public partial class PersonalView : UserControl
|
||||
{
|
||||
public PersonalView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
8
XLIMS.SP/Views/SpnmtpView.xaml
Normal file
8
XLIMS.SP/Views/SpnmtpView.xaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl x:Class="XLIMS.SP.Views.SpnmtpView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
>
|
||||
<Grid>
|
||||
<TextBox Text="{Binding Nmtp,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.SP/Views/SpnmtpView.xaml.cs
Normal file
26
XLIMS.SP/Views/SpnmtpView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.SP.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для SpnmtpView.xaml
|
||||
/// </summary>
|
||||
public partial class SpnmtpView : UserControl
|
||||
{
|
||||
public SpnmtpView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
8
XLIMS.SP/Views/SpoiView.xaml
Normal file
8
XLIMS.SP/Views/SpoiView.xaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl x:Class="XLIMS.SP.Views.SpoiView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
>
|
||||
<Grid>
|
||||
<TextBox Text="{Binding Nmoi,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.SP/Views/SpoiView.xaml.cs
Normal file
26
XLIMS.SP/Views/SpoiView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.SP.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для SpoiView.xaml
|
||||
/// </summary>
|
||||
public partial class SpoiView : UserControl
|
||||
{
|
||||
public SpoiView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user