Browse Source

新增页面

JXJAgvReake
ZhaoGang 1 year ago
parent
commit
4f58ecaa3c
13 changed files with 12 additions and 12 deletions
  1. +0
    -0
      BPASmartClient.Tourism/View/Debug.xaml
  2. +0
    -0
      BPASmartClient.Tourism/View/Debug.xaml.cs
  3. +4
    -4
      BPASmartClient.Tourism/View/ItemStorageView.xaml
  4. +1
    -1
      BPASmartClient.Tourism/View/ItemStorageView.xaml.cs
  5. +0
    -0
      BPASmartClient.Tourism/View/Monitor.xaml
  6. +0
    -0
      BPASmartClient.Tourism/View/Monitor.xaml.cs
  7. +0
    -0
      BPASmartClient.Tourism/View/ParSet.xaml
  8. +0
    -0
      BPASmartClient.Tourism/View/ParSet.xaml.cs
  9. +3
    -3
      BPASmartClient.Tourism/View/RecipeManageView.xaml
  10. +2
    -2
      BPASmartClient.Tourism/View/RecipeManageView.xaml.cs
  11. +1
    -1
      BPASmartClient.Tourism/ViewModel/ItemStorageViewModel.cs
  12. +0
    -0
      BPASmartClient.Tourism/ViewModel/MonitorViewModel.cs
  13. +1
    -1
      BPASmartClient.Tourism/ViewModel/RecipeManageViewModel.cs

BPASmartClient.Tourism/Views/Debug.xaml → BPASmartClient.Tourism/View/Debug.xaml View File


BPASmartClient.Tourism/Views/Debug.xaml.cs → BPASmartClient.Tourism/View/Debug.xaml.cs View File


BPASmartClient.Tourism/Views/ItemStorageView.xaml → BPASmartClient.Tourism/View/ItemStorageView.xaml View File

@@ -1,9 +1,9 @@
<UserControl x:Class="BPASmartClient.TourismCollege.Views.ItemStorageView"
<UserControl x:Class="BPASmartClient.TourismCollege.View.ItemStorageView"
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:BPASmartClient.TourismCollege.Views"
xmlns:local="clr-namespace:BPASmartClient.TourismCollege.View"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
@@ -41,7 +41,7 @@
<!--#endregion-->
<!--#region 辅料仓 -->
<UniformGrid Columns="8" Grid.Column="1" Margin="3" Background="ForestGreen">
</UniformGrid>
<!--#endregion-->
<!--#region 原料仓 -->
@@ -58,7 +58,7 @@
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
<!--#endregion-->
</Grid>
</UserControl>

BPASmartClient.Tourism/Views/ItemStorageView.xaml.cs → BPASmartClient.Tourism/View/ItemStorageView.xaml.cs View File

@@ -13,7 +13,7 @@ using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace BPASmartClient.TourismCollege.Views
namespace BPASmartClient.TourismCollege.View
{
/// <summary>
/// ItemStorageView.xaml 的交互逻辑

BPASmartClient.Tourism/Views/Monitor.xaml → BPASmartClient.Tourism/View/Monitor.xaml View File


BPASmartClient.Tourism/Views/Monitor.xaml.cs → BPASmartClient.Tourism/View/Monitor.xaml.cs View File


BPASmartClient.Tourism/Views/ParSet.xaml → BPASmartClient.Tourism/View/ParSet.xaml View File


BPASmartClient.Tourism/Views/ParSet.xaml.cs → BPASmartClient.Tourism/View/ParSet.xaml.cs View File


BPASmartClient.Tourism/Views/RecipeManageView.xaml → BPASmartClient.Tourism/View/RecipeManageView.xaml View File

@@ -1,9 +1,9 @@
<UserControl x:Class="BPASmartClient.TourismCollege.Views.RecipeManageView"
<UserControl x:Class="BPASmartClient.TourismCollege.View.RecipeManageView"
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:BPASmartClient.TourismCollege.Views"
xmlns:local="clr-namespace:BPASmartClient.TourismCollege.View"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
@@ -20,7 +20,7 @@
<RowDefinition Height="1*" />
</Grid.RowDefinitions>
<!--#region 操作栏 -->
<!--#endregion-->
</Grid>
</UserControl>

BPASmartClient.Tourism/Views/RecipeManageView.xaml.cs → BPASmartClient.Tourism/View/RecipeManageView.xaml.cs View File

@@ -13,7 +13,7 @@ using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace BPASmartClient.TourismCollege.Views
namespace BPASmartClient.TourismCollege.View
{
/// <summary>
/// RecipeManageView.xaml 的交互逻辑
@@ -23,7 +23,7 @@ namespace BPASmartClient.TourismCollege.Views
public RecipeManageView()
{
InitializeComponent();
}
}
}

BPASmartClient.Tourism/Viewmodels/ItemStorageViewModel.cs → BPASmartClient.Tourism/ViewModel/ItemStorageViewModel.cs View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPASmartClient.TourismCollege.Viewmodels
namespace BPASmartClient.TourismCollege.ViewModel
{
internal class ItemStorageViewModel
{

BPASmartClient.Tourism/Viewmodels/MonitorViewModel.cs → BPASmartClient.Tourism/ViewModel/MonitorViewModel.cs View File


BPASmartClient.Tourism/Viewmodels/RecipeManageViewModel.cs → BPASmartClient.Tourism/ViewModel/RecipeManageViewModel.cs View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPASmartClient.TourismCollege.ViewModels
namespace BPASmartClient.TourismCollege.ViewModel
{
public class RecipeManageViewModel
{

Loading…
Cancel
Save