diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs index b6ddd0e..fc0ad67 100644 --- a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class PutGoodsPageViewModel + public class PutGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public PutGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs index b6ddd0e..fc0ad67 100644 --- a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class PutGoodsPageViewModel + public class PutGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public PutGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs index b581078..883abdc 100644 --- a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class ReturnGoodsPageViewModel + public class ReturnGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public ReturnGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs index b6ddd0e..fc0ad67 100644 --- a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class PutGoodsPageViewModel + public class PutGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public PutGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs index b581078..883abdc 100644 --- a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class ReturnGoodsPageViewModel + public class ReturnGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public ReturnGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/Views/CabinetWindow.xaml b/SubCabinetSolution/Views/CabinetWindow.xaml index 0400cab..595f0fe 100644 --- a/SubCabinetSolution/Views/CabinetWindow.xaml +++ b/SubCabinetSolution/Views/CabinetWindow.xaml @@ -11,6 +11,7 @@ Background="White" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs index b6ddd0e..fc0ad67 100644 --- a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class PutGoodsPageViewModel + public class PutGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public PutGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs index b581078..883abdc 100644 --- a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class ReturnGoodsPageViewModel + public class ReturnGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public ReturnGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/Views/CabinetWindow.xaml b/SubCabinetSolution/Views/CabinetWindow.xaml index 0400cab..595f0fe 100644 --- a/SubCabinetSolution/Views/CabinetWindow.xaml +++ b/SubCabinetSolution/Views/CabinetWindow.xaml @@ -11,6 +11,7 @@ Background="White" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/Views/EmergencyPage.xaml b/SubCabinetSolution/Views/EmergencyPage.xaml index f1e1b9d..b93e19c 100644 --- a/SubCabinetSolution/Views/EmergencyPage.xaml +++ b/SubCabinetSolution/Views/EmergencyPage.xaml @@ -35,7 +35,7 @@ - + diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs index b6ddd0e..fc0ad67 100644 --- a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class PutGoodsPageViewModel + public class PutGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public PutGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs index b581078..883abdc 100644 --- a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class ReturnGoodsPageViewModel + public class ReturnGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public ReturnGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/Views/CabinetWindow.xaml b/SubCabinetSolution/Views/CabinetWindow.xaml index 0400cab..595f0fe 100644 --- a/SubCabinetSolution/Views/CabinetWindow.xaml +++ b/SubCabinetSolution/Views/CabinetWindow.xaml @@ -11,6 +11,7 @@ Background="White" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/Views/EmergencyPage.xaml b/SubCabinetSolution/Views/EmergencyPage.xaml index f1e1b9d..b93e19c 100644 --- a/SubCabinetSolution/Views/EmergencyPage.xaml +++ b/SubCabinetSolution/Views/EmergencyPage.xaml @@ -35,7 +35,7 @@ - + diff --git a/SubCabinetSolution/Views/InventoryPage.xaml b/SubCabinetSolution/Views/InventoryPage.xaml index 7783927..70e2980 100644 --- a/SubCabinetSolution/Views/InventoryPage.xaml +++ b/SubCabinetSolution/Views/InventoryPage.xaml @@ -3,11 +3,126 @@ 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:local="clr-namespace:SubCabinetSolution.Views" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="InventoryPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs index b6ddd0e..fc0ad67 100644 --- a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class PutGoodsPageViewModel + public class PutGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public PutGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs index b581078..883abdc 100644 --- a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class ReturnGoodsPageViewModel + public class ReturnGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public ReturnGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/Views/CabinetWindow.xaml b/SubCabinetSolution/Views/CabinetWindow.xaml index 0400cab..595f0fe 100644 --- a/SubCabinetSolution/Views/CabinetWindow.xaml +++ b/SubCabinetSolution/Views/CabinetWindow.xaml @@ -11,6 +11,7 @@ Background="White" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/Views/EmergencyPage.xaml b/SubCabinetSolution/Views/EmergencyPage.xaml index f1e1b9d..b93e19c 100644 --- a/SubCabinetSolution/Views/EmergencyPage.xaml +++ b/SubCabinetSolution/Views/EmergencyPage.xaml @@ -35,7 +35,7 @@ - + diff --git a/SubCabinetSolution/Views/InventoryPage.xaml b/SubCabinetSolution/Views/InventoryPage.xaml index 7783927..70e2980 100644 --- a/SubCabinetSolution/Views/InventoryPage.xaml +++ b/SubCabinetSolution/Views/InventoryPage.xaml @@ -3,11 +3,126 @@ 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:local="clr-namespace:SubCabinetSolution.Views" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="InventoryPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SubCabinetSolution/Views/PutGoodsPage.xaml b/SubCabinetSolution/Views/PutGoodsPage.xaml index c9ea2d5..1b275f1 100644 --- a/SubCabinetSolution/Views/PutGoodsPage.xaml +++ b/SubCabinetSolution/Views/PutGoodsPage.xaml @@ -3,11 +3,438 @@ 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:local="clr-namespace:SubCabinetSolution.Views" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="PutGoodsPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs index b6ddd0e..fc0ad67 100644 --- a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class PutGoodsPageViewModel + public class PutGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public PutGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs index b581078..883abdc 100644 --- a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class ReturnGoodsPageViewModel + public class ReturnGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public ReturnGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/Views/CabinetWindow.xaml b/SubCabinetSolution/Views/CabinetWindow.xaml index 0400cab..595f0fe 100644 --- a/SubCabinetSolution/Views/CabinetWindow.xaml +++ b/SubCabinetSolution/Views/CabinetWindow.xaml @@ -11,6 +11,7 @@ Background="White" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/Views/EmergencyPage.xaml b/SubCabinetSolution/Views/EmergencyPage.xaml index f1e1b9d..b93e19c 100644 --- a/SubCabinetSolution/Views/EmergencyPage.xaml +++ b/SubCabinetSolution/Views/EmergencyPage.xaml @@ -35,7 +35,7 @@ - + diff --git a/SubCabinetSolution/Views/InventoryPage.xaml b/SubCabinetSolution/Views/InventoryPage.xaml index 7783927..70e2980 100644 --- a/SubCabinetSolution/Views/InventoryPage.xaml +++ b/SubCabinetSolution/Views/InventoryPage.xaml @@ -3,11 +3,126 @@ 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:local="clr-namespace:SubCabinetSolution.Views" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="InventoryPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SubCabinetSolution/Views/PutGoodsPage.xaml b/SubCabinetSolution/Views/PutGoodsPage.xaml index c9ea2d5..1b275f1 100644 --- a/SubCabinetSolution/Views/PutGoodsPage.xaml +++ b/SubCabinetSolution/Views/PutGoodsPage.xaml @@ -3,11 +3,438 @@ 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:local="clr-namespace:SubCabinetSolution.Views" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="PutGoodsPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SubCabinetSolution/Views/ReturnGoodsPage.xaml b/SubCabinetSolution/Views/ReturnGoodsPage.xaml index 58c41ef..b4a9b77 100644 --- a/SubCabinetSolution/Views/ReturnGoodsPage.xaml +++ b/SubCabinetSolution/Views/ReturnGoodsPage.xaml @@ -7,6 +7,459 @@ Title="ReturnGoodsPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.vs/SubCabinetSolution/v17/.suo b/.vs/SubCabinetSolution/v17/.suo index 20ed520..21bd4ac 100644 --- a/.vs/SubCabinetSolution/v17/.suo +++ b/.vs/SubCabinetSolution/v17/.suo Binary files differ diff --git a/SubCabinetSolution/MainWindow.xaml b/SubCabinetSolution/MainWindow.xaml index c886cc1..cde23f1 100644 --- a/SubCabinetSolution/MainWindow.xaml +++ b/SubCabinetSolution/MainWindow.xaml @@ -11,6 +11,7 @@ Background="#4381DF" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs index b6ddd0e..fc0ad67 100644 --- a/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/PutGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class PutGoodsPageViewModel + public class PutGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public PutGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs index b581078..883abdc 100644 --- a/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs +++ b/SubCabinetSolution/ViewModel/ReturnGoodsPageViewModel.cs @@ -1,7 +1,45 @@ -namespace SubCabinetSolution.ViewModel +using System.Collections.ObjectModel; +using GalaSoft.MvvmLight; +using SubCabinetSolution.Model; + +namespace SubCabinetSolution.ViewModel { - public class ReturnGoodsPageViewModel + public class ReturnGoodsPageViewModel : ViewModelBase { - + public ObservableCollection FirstDoorGoods { get; set; } + public ObservableCollection SecondDoorGoods { get; set; } + public ObservableCollection ThirdDoorGoods { get; set; } + public ObservableCollection FourthDoorGoods { get; set; } + public ObservableCollection FifthDoorGoods { get; set; } + public ObservableCollection SixthDoorGoods { get; set; } + + public ReturnGoodsPageViewModel() + { + this.FirstDoorGoods = new ObservableCollection + { + new GoodsModel("止血纱布", "[19]"), + new GoodsModel("可吸收医用膜", "[89]"), + new GoodsModel("消融电极", "[59]"), + new GoodsModel("疝环充填补片", "[19]"), + new GoodsModel("微创扩展引流套", "[29]"), + new GoodsModel("创口贴", "[69]"), + new GoodsModel("一次性医用口罩", "[2]") + }; + this.SecondDoorGoods = new ObservableCollection + { + }; + this.ThirdDoorGoods = new ObservableCollection + { + }; + this.FourthDoorGoods = new ObservableCollection + { + }; + this.FifthDoorGoods = new ObservableCollection + { + }; + this.SixthDoorGoods = new ObservableCollection + { + }; + } } } \ No newline at end of file diff --git a/SubCabinetSolution/Views/CabinetWindow.xaml b/SubCabinetSolution/Views/CabinetWindow.xaml index 0400cab..595f0fe 100644 --- a/SubCabinetSolution/Views/CabinetWindow.xaml +++ b/SubCabinetSolution/Views/CabinetWindow.xaml @@ -11,6 +11,7 @@ Background="White" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" + WindowState="Maximized" mc:Ignorable="d"> diff --git a/SubCabinetSolution/Views/EmergencyPage.xaml b/SubCabinetSolution/Views/EmergencyPage.xaml index f1e1b9d..b93e19c 100644 --- a/SubCabinetSolution/Views/EmergencyPage.xaml +++ b/SubCabinetSolution/Views/EmergencyPage.xaml @@ -35,7 +35,7 @@ - + diff --git a/SubCabinetSolution/Views/InventoryPage.xaml b/SubCabinetSolution/Views/InventoryPage.xaml index 7783927..70e2980 100644 --- a/SubCabinetSolution/Views/InventoryPage.xaml +++ b/SubCabinetSolution/Views/InventoryPage.xaml @@ -3,11 +3,126 @@ 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:local="clr-namespace:SubCabinetSolution.Views" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="InventoryPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SubCabinetSolution/Views/PutGoodsPage.xaml b/SubCabinetSolution/Views/PutGoodsPage.xaml index c9ea2d5..1b275f1 100644 --- a/SubCabinetSolution/Views/PutGoodsPage.xaml +++ b/SubCabinetSolution/Views/PutGoodsPage.xaml @@ -3,11 +3,438 @@ 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:local="clr-namespace:SubCabinetSolution.Views" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="PutGoodsPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SubCabinetSolution/Views/ReturnGoodsPage.xaml b/SubCabinetSolution/Views/ReturnGoodsPage.xaml index 58c41ef..b4a9b77 100644 --- a/SubCabinetSolution/Views/ReturnGoodsPage.xaml +++ b/SubCabinetSolution/Views/ReturnGoodsPage.xaml @@ -7,6 +7,459 @@ Title="ReturnGoodsPage" d:DesignHeight="450" d:DesignWidth="800" + Background="White" mc:Ignorable="d"> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SubCabinetSolution/obj/Debug/MainWindow.g.i.cs b/SubCabinetSolution/obj/Debug/MainWindow.g.i.cs index 22ccbb5..3c4912b 100644 --- a/SubCabinetSolution/obj/Debug/MainWindow.g.i.cs +++ b/SubCabinetSolution/obj/Debug/MainWindow.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "08CE010AE2B2ACC5C36CA0E4A3A1BABDC1EE2E638EE8A66F807AC5415600B755" +#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B3E70D585034396A3E80FF035B6863B6DD2E8144F26AFEBE49933BC583482556" //------------------------------------------------------------------------------ // // 此代码由工具生成。