基本框架搭建
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
using linesider_screen_bankend.Core;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows.Controls;
|
||||
using linesider_screen_bankend.Core;
|
||||
using linesider_screen_bankend.Modules.ModuleName.Views;
|
||||
using Prism.Ioc;
|
||||
using Prism.Modularity;
|
||||
@@ -17,12 +20,19 @@ namespace linesider_screen_bankend.Modules.ModuleName
|
||||
|
||||
public void OnInitialized(IContainerProvider containerProvider)
|
||||
{
|
||||
_regionManager.RequestNavigate(RegionNames.ContentRegion, "ViewA");
|
||||
//_regionManager.RequestNavigate(RegionNames.ContentRegion, "ViewA");
|
||||
//Navigate(RegionNames.LogRegion, "CommonLogView");
|
||||
//Navigate(RegionNames.TopMenuRegion, "TopMenuView");
|
||||
}
|
||||
|
||||
public void RegisterTypes(IContainerRegistry containerRegistry)
|
||||
{
|
||||
containerRegistry.RegisterForNavigation<ViewA>();
|
||||
Debug.WriteLine($"尝试注册Module视图");
|
||||
containerRegistry.RegisterForNavigation<ViewA>("ViewA");
|
||||
containerRegistry.RegisterForNavigation<CommonLog>("CommonLogView");
|
||||
containerRegistry.RegisterForNavigation<TopMenu>("TopMenuView");
|
||||
Debug.WriteLine($"Module视图注册成功");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using linesider_screen_bankend.Core.Mvvm;
|
||||
using linesider_screen_bankend.Services.Interfaces;
|
||||
using Prism.Regions;
|
||||
|
||||
namespace linesider_screen_bankend.Modules.ModuleName.ViewModels
|
||||
{
|
||||
public class CommonLogViewModel : RegionViewModelBase
|
||||
{
|
||||
ILogService _logService;
|
||||
private string _logMessage;
|
||||
public string LogMessage
|
||||
{
|
||||
get { return _logMessage; }
|
||||
set { SetProperty(ref _logMessage, value); }
|
||||
}
|
||||
public CommonLogViewModel(IRegionManager regionManager, ILogService logService) : base(regionManager)
|
||||
{
|
||||
LogMessage = logService.GetInitMessage();
|
||||
_logService = logService;
|
||||
}
|
||||
|
||||
public void AddLogMessage()
|
||||
{
|
||||
_logService.AddMessage("123");
|
||||
}
|
||||
public override void OnNavigatedTo(NavigationContext navigationContext)
|
||||
{
|
||||
//do something
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
using linesider_screen_bankend.Core;
|
||||
using linesider_screen_bankend.Core.Mvvm;
|
||||
using linesider_screen_bankend.Services.Interfaces;
|
||||
using Prism.Commands;
|
||||
using Prism.Regions;
|
||||
|
||||
namespace linesider_screen_bankend.Modules.ModuleName.ViewModels
|
||||
{
|
||||
public class TopMenuViewModel : RegionViewModelBase
|
||||
{
|
||||
private readonly IRegionManager _regionManager;
|
||||
public DelegateCommand NavigateToHomeCommand { get; private set; }
|
||||
public DelegateCommand NavigateToSettingsCommand { get; private set; }
|
||||
public TopMenuViewModel(IRegionManager regionManager) :
|
||||
base(regionManager)
|
||||
{
|
||||
_regionManager = regionManager;
|
||||
NavigateToHomeCommand = new DelegateCommand(NavigateToHome);
|
||||
NavigateToSettingsCommand = new DelegateCommand(NavigateToSettings);
|
||||
}
|
||||
public override void OnNavigatedTo(NavigationContext navigationContext)
|
||||
{
|
||||
//do something
|
||||
}
|
||||
private void NavigateToHome()
|
||||
{
|
||||
_regionManager.RequestNavigate(RegionNames.ContentRegion, "HomePage");
|
||||
}
|
||||
|
||||
private void NavigateToSettings()
|
||||
{
|
||||
_regionManager.RequestNavigate(RegionNames.ContentRegion, "SettingsPage");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
<UserControl x:Class="linesider_screen_bankend.Modules.ModuleName.Views.CommonLog"
|
||||
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:linesider_screen_bankend.Modules.ModuleName.Views"
|
||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||
xmlns:prism="http://prismlibrary.com/"
|
||||
prism:ViewModelLocator.AutoWireViewModel="True">
|
||||
<Grid>
|
||||
<!-- Log GroupBox -->
|
||||
<GroupBox Header="系统日志" Style="{StaticResource MaterialDesignGroupBox}">
|
||||
<TextBox HorizontalAlignment="Left" TextWrapping="Wrap" Style="{StaticResource MaterialDesignTextBox}"/>
|
||||
</GroupBox>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
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 linesider_screen_bankend.Modules.ModuleName.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// CommonLog.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class CommonLog : UserControl
|
||||
{
|
||||
public CommonLog()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
<UserControl x:Class="linesider_screen_bankend.Modules.ModuleName.Views.TopMenu"
|
||||
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:linesider_screen_bankend.Modules.ModuleName.Views"
|
||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||
xmlns:prism="http://prismlibrary.com/"
|
||||
prism:ViewModelLocator.AutoWireViewModel="True">
|
||||
<Grid >
|
||||
<DockPanel LastChildFill="false">
|
||||
<!--<materialDesign:PackIcon Width="Auto" Kind="Menu" Margin="0,0" VerticalAlignment="Center" DockPanel.Dock="Left"/>-->
|
||||
<Menu DockPanel.Dock="Left" Style="{StaticResource MaterialDesignMenu}">
|
||||
<MenuItem Header="主页" Command="{Binding NavigateToHomeCommand}"/>
|
||||
<MenuItem Header="配置" Command="{Binding NavigateToSettingsCommand}"/>
|
||||
</Menu>
|
||||
<Button DockPanel.Dock="Right" Content="退出" Width="100" Background="Red" Foreground="White" Style="{StaticResource MaterialDesignRaisedButton}"/>
|
||||
</DockPanel>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
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;
|
||||
using linesider_screen_bankend.Core;
|
||||
using Prism.Commands;
|
||||
using Prism.Regions;
|
||||
using SqlSugar;
|
||||
|
||||
namespace linesider_screen_bankend.Modules.ModuleName.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// TopMenu.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class TopMenu : UserControl
|
||||
{
|
||||
|
||||
|
||||
|
||||
public TopMenu(IRegionManager regionManager)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
<UserControl x:Class="linesider_screen_bankend.Modules.ModuleName.Views.ViewA"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="clr-namespace:linesider_screen_bankend.Modules.ModuleName.Views"
|
||||
xmlns:prism="http://prismlibrary.com/"
|
||||
prism:ViewModelLocator.AutoWireViewModel="True" >
|
||||
<Grid>
|
||||
<TextBlock Text="{Binding Message}"
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="24"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
<UserControl x:Class="linesider_screen_bankend.Modules.ModuleName.Views.ViewA"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="clr-namespace:linesider_screen_bankend.Modules.ModuleName.Views"
|
||||
xmlns:prism="http://prismlibrary.com/"
|
||||
prism:ViewModelLocator.AutoWireViewModel="True" >
|
||||
<Grid>
|
||||
<TextBlock Text="{Binding Message}"
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="24"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
@@ -1,28 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
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 linesider_screen_bankend.Modules.ModuleName.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for ViewA.xaml
|
||||
/// </summary>
|
||||
public partial class ViewA : UserControl
|
||||
{
|
||||
public ViewA()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
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 linesider_screen_bankend.Modules.ModuleName.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for ViewA.xaml
|
||||
/// </summary>
|
||||
public partial class ViewA : UserControl
|
||||
{
|
||||
public ViewA()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,131 @@
|
||||
<UserControl x:Class="linesider_screen_bankend.Views.HomePage"
|
||||
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:linesider_screen_bankend.Views"
|
||||
mc:Ignorable="d"
|
||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||
xmlns:prism="http://prismlibrary.com/"
|
||||
d:DesignHeight="800" d:DesignWidth="1200">
|
||||
<Grid>
|
||||
<!-- 内容区域 -->
|
||||
<StackPanel>
|
||||
<!-- 基本信息 GroupBox -->
|
||||
<GroupBox Margin="0,0,0,5" Header="基本信息" Style="{StaticResource MaterialDesignGroupBox}">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" Text="工单号" VerticalAlignment="Center" Grid.Row="0" Grid.Column="0"/>
|
||||
<ComboBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="150" Style="{StaticResource MaterialDesignComboBox}" Grid.Row="0" Grid.Column="0"/>
|
||||
<Button Content="上一工单" HorizontalAlignment="Center" VerticalAlignment="Center" Height="30" Width="100" Style="{StaticResource MaterialDesignFlatMidBgButton}" Grid.Row="0" Grid.Column="1"/>
|
||||
<Button Content="下一工单" HorizontalAlignment="Center" VerticalAlignment="Center" Height="30" Width="100" Style="{StaticResource MaterialDesignFlatMidBgButton}" Grid.Row="0" Grid.Column="2"/>
|
||||
<Button Content="刷新工单" HorizontalAlignment="Center" VerticalAlignment="Center" Height="30" Width="100" Style="{StaticResource MaterialDesignFlatMidBgButton}" Grid.Row="0" Grid.Column="3"/>
|
||||
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" Text="班次" VerticalAlignment="Center" Grid.Row="0" Grid.Column="4"/>
|
||||
<ComboBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="60" Height="30" Style="{StaticResource MaterialDesignComboBox}" Grid.Row="1" Grid.Column="0"/>
|
||||
<Button Content="确认" HorizontalAlignment="Center" VerticalAlignment="Center" Height="30" Width="100" Style="{StaticResource MaterialDesignFlatMidBgButton}" Grid.Row="1" Grid.Column="1"/>
|
||||
<Button Content="完成" HorizontalAlignment="Center" VerticalAlignment="Center" Height="30" Width="100" Style="{StaticResource MaterialDesignFlatMidBgButton}" Grid.Row="1" Grid.Column="2"/>
|
||||
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" Text="零件号" VerticalAlignment="Center" Grid.Row="2" Grid.Column="0"/>
|
||||
<TextBox HorizontalAlignment="Left" TextWrapping="Wrap" Text="" VerticalAlignment="Center" Width="150" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="2" Grid.Column="1"/>
|
||||
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" Text="描述" VerticalAlignment="Center" Grid.Row="2" Grid.Column="2"/>
|
||||
<TextBox HorizontalAlignment="Left" TextWrapping="Wrap" Text="" VerticalAlignment="Center" Width="150" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="2" Grid.Column="3"/>
|
||||
</Grid>
|
||||
</GroupBox>
|
||||
|
||||
<!-- 产品标签使用内容 GroupBox -->
|
||||
<GroupBox Margin="0,0,0,5" Header="产品标签" Style="{StaticResource MaterialDesignGroupBox}">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="0" Grid.Column="0" Text="工单号(10000)"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="0" Text="追溯号(10001)"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="2" Grid.Column="0" Text="班组号(10002)"/>
|
||||
<TextBox VerticalAlignment="Center" Width="auto" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="0" Grid.Column="1"/>
|
||||
<TextBox VerticalAlignment="Center" Width="auto" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="1" Grid.Column="1"/>
|
||||
<TextBox VerticalAlignment="Center" Width="auto" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="2" Grid.Column="1"/>
|
||||
<Button Content="打印" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="2" Grid.RowSpan="3" Width="auto" Style="{StaticResource MaterialDesignFlatMidBgButton}"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="0" Grid.Column="3" Text="当前工单总数" Foreground="Red"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="0" Grid.Column="4" Text="当前设备数量" Foreground="Red"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="3" Text="0" FontSize="30" Foreground="Red"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="4" Text="0" FontSize="30" Foreground="Red"/>
|
||||
</Grid>
|
||||
</GroupBox>
|
||||
|
||||
<!-- 箱标签使用内容 GroupBox -->
|
||||
<GroupBox Margin="0,0,0,5" Header="箱标签" Style="{StaticResource MaterialDesignGroupBox}">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="0" Grid.Column="0" Text="工单号(10000)"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="0" Text="箱 号(10005)"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="2" Grid.Column="0" Text="班组号(10000)"/>
|
||||
<TextBox VerticalAlignment="Center" Width="auto" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="0" Grid.Column="1"/>
|
||||
<TextBox VerticalAlignment="Center" Width="auto" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="1" Grid.Column="1"/>
|
||||
<TextBox VerticalAlignment="Center" Width="auto" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="2" Grid.Column="1"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="0" Grid.Column="2" Text="满箱量(10007)"/>
|
||||
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="2" Text="装箱量(10003)"/>
|
||||
<TextBox HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="3" Grid.Row="0" Width="auto" TextWrapping="Wrap" Text="" Style="{StaticResource MaterialDesignTextBox}"/>
|
||||
<TextBox HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="3" Grid.Row="1" Width="auto" TextWrapping="Wrap" Text="" Style="{StaticResource MaterialDesignTextBox}"/>
|
||||
<Button Content="箱标签打印" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="4" Grid.Row="0" Style="{StaticResource MaterialDesignFlatMidBgButton}"/>
|
||||
<Button Content="拼箱" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="4" Grid.Row="1" Style="{StaticResource MaterialDesignFlatMidBgButton}"/>
|
||||
</Grid>
|
||||
</GroupBox>
|
||||
|
||||
<!-- 扫描信息部分 -->
|
||||
<GroupBox Margin="0,0,0,5" Header="扫描信息" Style="{StaticResource MaterialDesignGroupBox}">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" VerticalAlignment="Center" Width="56" Grid.Row="0" Grid.Column="0"><Run Text="箱"/><Run Text=" "/><Run Language="zh-cn" Text=" "/><Run Text=" ID:"/></TextBlock>
|
||||
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" VerticalAlignment="Center" Width="56" Grid.Row="1" Grid.Column="0"><Run Text="产品"/><Run Language="zh-cn" Text=" "/><Run Text="ID:"/></TextBlock>
|
||||
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" VerticalAlignment="Center" Grid.Row="2" Grid.Column="0"><Run Language="zh-cn" Text="扫描内容"/><Run Text=":"/></TextBlock>
|
||||
<TextBox HorizontalAlignment="Left" TextWrapping="Wrap" Text="" VerticalAlignment="Center" Width="200" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="0" Grid.Column="1"/>
|
||||
<TextBox HorizontalAlignment="Left" TextWrapping="Wrap" Text="" VerticalAlignment="Center" Width="200" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="1" Grid.Column="1"/>
|
||||
<TextBox HorizontalAlignment="Left" TextWrapping="Wrap" Text="" VerticalAlignment="Center" Width="500" Style="{StaticResource MaterialDesignTextBox}" Grid.Row="2" Grid.Column="1"/>
|
||||
<Button Content="模拟触发" HorizontalAlignment="Center" VerticalAlignment="Center" Width="120" Style="{StaticResource MaterialDesignFlatMidBgButton}" Grid.Row="0" Grid.Column="2" Grid.RowSpan="2" Click="Button_Click"/>
|
||||
<RadioButton HorizontalAlignment="Left" VerticalAlignment="Center" Grid.Row="0" Grid.Column="2" Margin="420,0,0,0" Style="{StaticResource MaterialDesignRadioButton}"/>
|
||||
</Grid>
|
||||
</GroupBox>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
@@ -0,0 +1,20 @@
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace linesider_screen_bankend.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// HomePage.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class HomePage : UserControl
|
||||
{
|
||||
public HomePage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
private void Button_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
<UserControl x:Class="linesider_screen_bankend.Views.SettingsPage"
|
||||
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:linesider_screen_bankend.Views"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="450" d:DesignWidth="800">
|
||||
<Grid Cursor="">
|
||||
<StackPanel>
|
||||
<TextBox TextWrapping="Wrap" Text="菜单1" Width="150" Style="{StaticResource MaterialDesignTextBox}"/>
|
||||
<TextBox TextWrapping="Wrap" Text="菜单2" Width="150" Style="{StaticResource MaterialDesignTextBox}"/>
|
||||
<TextBox TextWrapping="Wrap" Text="菜单3" Width="150" Style="{StaticResource MaterialDesignTextBox}"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace linesider_screen_bankend.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// SettingsPage.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class SettingsPage : UserControl
|
||||
{
|
||||
public SettingsPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -10,4 +10,12 @@
|
||||
<ProjectReference Include="..\..\linesider_screen_bankend.Core\linesider_screen_bankend.Core.csproj" />
|
||||
<ProjectReference Include="..\..\Services\linesider_screen_bankend.Services.Interfaces\linesider_screen_bankend.Services.Interfaces.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Update="Views\Page\HomePage.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\Page\SettingsPage.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup />
|
||||
<ItemGroup>
|
||||
<Compile Update="Views\Components\CommonLog.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Views\Components\TopMenu.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -54,6 +54,18 @@
|
||||
"target": "Package",
|
||||
"version": "[3.5.2, )"
|
||||
},
|
||||
"MaterialDesignColors": {
|
||||
"target": "Package",
|
||||
"version": "[5.2.1, )"
|
||||
},
|
||||
"MaterialDesignThemes": {
|
||||
"target": "Package",
|
||||
"version": "[5.2.1, )"
|
||||
},
|
||||
"MaterialDesignThemes.MahApps": {
|
||||
"target": "Package",
|
||||
"version": "[5.2.1, )"
|
||||
},
|
||||
"Prism.Wpf": {
|
||||
"target": "Package",
|
||||
"version": "[8.1.97, )"
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
<SourceRoot Include="E:\sk 2022\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Administrator\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.31</PkgMicrosoft_Xaml_Behaviors_Wpf>
|
||||
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Administrator\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
|
||||
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Administrator\.nuget\packages\materialdesignthemes\5.2.1</PkgMaterialDesignThemes>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -60,6 +60,26 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ControlzEx/4.3.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
|
||||
"System.Text.Json": "4.7.2"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netcoreapp3.1/ControlzEx.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.1/ControlzEx.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"frameworkReferences": [
|
||||
"Microsoft.WindowsDesktop.App.WPF"
|
||||
]
|
||||
},
|
||||
"EmbedIO/3.5.2": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -133,6 +153,76 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"MahApps.Metro/2.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"ControlzEx": "4.3.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netcoreapp3.1/MahApps.Metro.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.1/MahApps.Metro.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"frameworkReferences": [
|
||||
"Microsoft.WindowsDesktop.App.WPF"
|
||||
]
|
||||
},
|
||||
"MaterialDesignColors/5.2.1": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net6.0/MaterialDesignColors.dll": {
|
||||
"related": ".pdb"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/MaterialDesignColors.dll": {
|
||||
"related": ".pdb"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MaterialDesignThemes/5.2.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"MaterialDesignColors": "5.2.1",
|
||||
"Microsoft.Xaml.Behaviors.Wpf": "1.1.39"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net6.0/MaterialDesignThemes.Wpf.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/MaterialDesignThemes.Wpf.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"build/_._": {}
|
||||
}
|
||||
},
|
||||
"MaterialDesignThemes.MahApps/5.2.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"MahApps.Metro": "2.0.0",
|
||||
"MaterialDesignColors": "5.2.1",
|
||||
"MaterialDesignThemes": "5.2.1"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net6.0/MaterialDesignThemes.MahApps.dll": {
|
||||
"related": ".pdb"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/MaterialDesignThemes.MahApps.dll": {
|
||||
"related": ".pdb"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces/9.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
@@ -439,7 +529,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
|
||||
"Microsoft.Xaml.Behaviors.Wpf/1.1.39": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
|
||||
@@ -1473,6 +1563,9 @@
|
||||
"framework": ".NETCoreApp,Version=v6.0",
|
||||
"dependencies": {
|
||||
"EmbedIO": "3.5.2",
|
||||
"MaterialDesignColors": "5.2.1",
|
||||
"MaterialDesignThemes": "5.2.1",
|
||||
"MaterialDesignThemes.MahApps": "5.2.1",
|
||||
"Prism.Wpf": "8.1.97"
|
||||
},
|
||||
"compile": {
|
||||
@@ -1573,6 +1666,30 @@
|
||||
"packageIcon.png"
|
||||
]
|
||||
},
|
||||
"ControlzEx/4.3.0": {
|
||||
"sha512": "I7PKmQNIMO9+s4s50WXOApotnyEKL9G8vvYrZY7CLe7nufXwRSv+vWPrd4BYwZDQiWHbBwnXsC8zUPgPnEWr6g==",
|
||||
"type": "package",
|
||||
"path": "controlzex/4.3.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"controlzex.4.3.0.nupkg.sha512",
|
||||
"controlzex.nuspec",
|
||||
"lib/net45/ControlzEx.dll",
|
||||
"lib/net45/ControlzEx.pdb",
|
||||
"lib/net45/ControlzEx.xml",
|
||||
"lib/net462/ControlzEx.dll",
|
||||
"lib/net462/ControlzEx.pdb",
|
||||
"lib/net462/ControlzEx.xml",
|
||||
"lib/netcoreapp3.0/ControlzEx.dll",
|
||||
"lib/netcoreapp3.0/ControlzEx.pdb",
|
||||
"lib/netcoreapp3.0/ControlzEx.xml",
|
||||
"lib/netcoreapp3.1/ControlzEx.dll",
|
||||
"lib/netcoreapp3.1/ControlzEx.pdb",
|
||||
"lib/netcoreapp3.1/ControlzEx.xml",
|
||||
"logo-mini.png"
|
||||
]
|
||||
},
|
||||
"EmbedIO/3.5.2": {
|
||||
"sha512": "YU4j+3XvuO8/VPkNf7KWOF1TpMhnyVhXnPsG1mvnDhTJ9D5BZOFXVDvCpE/SkQ1AJ0Aa+dXOVSW3ntgmLL7aJg==",
|
||||
"type": "package",
|
||||
@@ -1673,6 +1790,114 @@
|
||||
"lib/netstandard2.1/K4os.Hash.xxHash.xml"
|
||||
]
|
||||
},
|
||||
"MahApps.Metro/2.0.0": {
|
||||
"sha512": "btjlE3Q8iebJB+4TBJZLcJBQZshKYqfkcATj9AS8veq4a506uE71NOTE1OSoavOJ70xasBjcdc+VuN17l+kIqw==",
|
||||
"type": "package",
|
||||
"path": "mahapps.metro/2.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net452/MahApps.Metro.dll",
|
||||
"lib/net452/MahApps.Metro.pdb",
|
||||
"lib/net452/MahApps.Metro.xml",
|
||||
"lib/net46/MahApps.Metro.dll",
|
||||
"lib/net46/MahApps.Metro.pdb",
|
||||
"lib/net46/MahApps.Metro.xml",
|
||||
"lib/net47/MahApps.Metro.dll",
|
||||
"lib/net47/MahApps.Metro.pdb",
|
||||
"lib/net47/MahApps.Metro.xml",
|
||||
"lib/netcoreapp3.0/MahApps.Metro.dll",
|
||||
"lib/netcoreapp3.0/MahApps.Metro.pdb",
|
||||
"lib/netcoreapp3.0/MahApps.Metro.xml",
|
||||
"lib/netcoreapp3.1/MahApps.Metro.dll",
|
||||
"lib/netcoreapp3.1/MahApps.Metro.pdb",
|
||||
"lib/netcoreapp3.1/MahApps.Metro.xml",
|
||||
"mahapps.metro.2.0.0.nupkg.sha512",
|
||||
"mahapps.metro.logo.png",
|
||||
"mahapps.metro.nuspec"
|
||||
]
|
||||
},
|
||||
"MaterialDesignColors/5.2.1": {
|
||||
"sha512": "D0HW6E2/kzsnEWCh1KDG/K09Fpkvs9mR3n91Y8YSOsEAoQmGZbVAj58ssyAxGTiIPj2zB4ZVnwxkizwO35/v8A==",
|
||||
"type": "package",
|
||||
"path": "materialdesigncolors/5.2.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"docs/README.md",
|
||||
"images/MaterialDesignColors.Icon.png",
|
||||
"lib/net462/MaterialDesignColors.dll",
|
||||
"lib/net462/MaterialDesignColors.pdb",
|
||||
"lib/net6.0/MaterialDesignColors.dll",
|
||||
"lib/net6.0/MaterialDesignColors.pdb",
|
||||
"lib/net8.0/MaterialDesignColors.dll",
|
||||
"lib/net8.0/MaterialDesignColors.pdb",
|
||||
"materialdesigncolors.5.2.1.nupkg.sha512",
|
||||
"materialdesigncolors.nuspec"
|
||||
]
|
||||
},
|
||||
"MaterialDesignThemes/5.2.1": {
|
||||
"sha512": "x8JDqNHJcTLLxIoVts3w7AbSq5Zo0FXTw89XqPN7+n0EKqLXFwWsywiUn08HDyTGAmZVJqbQsWKxKWCI8qfWsQ==",
|
||||
"type": "package",
|
||||
"path": "materialdesignthemes/5.2.1",
|
||||
"hasTools": true,
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"build/MaterialDesignThemes.targets",
|
||||
"build/Resources/Roboto/Roboto-Black.ttf",
|
||||
"build/Resources/Roboto/Roboto-BlackItalic.ttf",
|
||||
"build/Resources/Roboto/Roboto-Bold.ttf",
|
||||
"build/Resources/Roboto/Roboto-BoldItalic.ttf",
|
||||
"build/Resources/Roboto/Roboto-Italic.ttf",
|
||||
"build/Resources/Roboto/Roboto-Light.ttf",
|
||||
"build/Resources/Roboto/Roboto-LightItalic.ttf",
|
||||
"build/Resources/Roboto/Roboto-Medium.ttf",
|
||||
"build/Resources/Roboto/Roboto-MediumItalic.ttf",
|
||||
"build/Resources/Roboto/Roboto-Regular.ttf",
|
||||
"build/Resources/Roboto/Roboto-Thin.ttf",
|
||||
"build/Resources/Roboto/Roboto-ThinItalic.ttf",
|
||||
"build/Resources/Roboto/RobotoCondensed-Bold.ttf",
|
||||
"build/Resources/Roboto/RobotoCondensed-BoldItalic.ttf",
|
||||
"build/Resources/Roboto/RobotoCondensed-Italic.ttf",
|
||||
"build/Resources/Roboto/RobotoCondensed-Light.ttf",
|
||||
"build/Resources/Roboto/RobotoCondensed-LightItalic.ttf",
|
||||
"build/Resources/Roboto/RobotoCondensed-Regular.ttf",
|
||||
"docs/README.md",
|
||||
"images/MaterialDesignThemes.Icon.png",
|
||||
"lib/net462/MaterialDesignThemes.Wpf.dll",
|
||||
"lib/net462/MaterialDesignThemes.Wpf.pdb",
|
||||
"lib/net462/MaterialDesignThemes.Wpf.xml",
|
||||
"lib/net6.0/MaterialDesignThemes.Wpf.dll",
|
||||
"lib/net6.0/MaterialDesignThemes.Wpf.pdb",
|
||||
"lib/net6.0/MaterialDesignThemes.Wpf.xml",
|
||||
"lib/net8.0/MaterialDesignThemes.Wpf.dll",
|
||||
"lib/net8.0/MaterialDesignThemes.Wpf.pdb",
|
||||
"lib/net8.0/MaterialDesignThemes.Wpf.xml",
|
||||
"materialdesignthemes.5.2.1.nupkg.sha512",
|
||||
"materialdesignthemes.nuspec",
|
||||
"tools/VisualStudioToolsManifest.xml"
|
||||
]
|
||||
},
|
||||
"MaterialDesignThemes.MahApps/5.2.1": {
|
||||
"sha512": "8lbnJKQjn3Ri6irNSl797AK3AqgtlYs7NjDsCXPYRhrua2ULb5qX2AY7F7vwpHDPRj8II+auW6trTxS0Im9iEw==",
|
||||
"type": "package",
|
||||
"path": "materialdesignthemes.mahapps/5.2.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"docs/README.md",
|
||||
"images/MaterialDesignThemes.MahApps.Icon.png",
|
||||
"lib/net462/MaterialDesignThemes.MahApps.dll",
|
||||
"lib/net462/MaterialDesignThemes.MahApps.pdb",
|
||||
"lib/net6.0/MaterialDesignThemes.MahApps.dll",
|
||||
"lib/net6.0/MaterialDesignThemes.MahApps.pdb",
|
||||
"lib/net8.0/MaterialDesignThemes.MahApps.dll",
|
||||
"lib/net8.0/MaterialDesignThemes.MahApps.pdb",
|
||||
"materialdesignthemes.mahapps.5.2.1.nupkg.sha512",
|
||||
"materialdesignthemes.mahapps.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces/9.0.0": {
|
||||
"sha512": "owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==",
|
||||
"type": "package",
|
||||
@@ -2131,10 +2356,10 @@
|
||||
"microsoft.sqlserver.server.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
|
||||
"sha512": "LZpuf82ACZWldmfMuv3CTUMDh3o0xo0uHUaybR5HgqVLDBJJ9RZLykplQ/bTJd0/VDt3EhD4iDgUgbdIUAM+Kg==",
|
||||
"Microsoft.Xaml.Behaviors.Wpf/1.1.39": {
|
||||
"sha512": "8PZKqw9QOcu42xk8puY4P1+EXHL9YGOR9b7qhaYx5cILHul456H073tj99vyPcCt0W0781T9RwHqkx507ZyUpQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.xaml.behaviors.wpf/1.1.31",
|
||||
"path": "microsoft.xaml.behaviors.wpf/1.1.39",
|
||||
"hasTools": true,
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
@@ -2151,7 +2376,7 @@
|
||||
"lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll",
|
||||
"lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.pdb",
|
||||
"lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.xml",
|
||||
"microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512",
|
||||
"microsoft.xaml.behaviors.wpf.1.1.39.nupkg.sha512",
|
||||
"microsoft.xaml.behaviors.wpf.nuspec",
|
||||
"tools/Install.ps1"
|
||||
]
|
||||
|
||||
@@ -1,17 +1,22 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "H9EJ+QEws0w=",
|
||||
"dgSpecHash": "dEFNO3dp5tQ=",
|
||||
"success": true,
|
||||
"projectFilePath": "F:\\Git仓库\\上海干巷涂装车间-后道标签扫描-WPF\\linesider_screen_bankend\\Modules\\linesider_screen_bankend.Modules.ModuleName\\linesider_screen_bankend.Modules.ModuleName.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.cryptography\\2.3.1\\bouncycastle.cryptography.2.3.1.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\controlzex\\4.3.0\\controlzex.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\embedio\\3.5.2\\embedio.3.5.2.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.26.1\\google.protobuf.3.26.1.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4\\1.3.8\\k4os.compression.lz4.1.3.8.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.8\\k4os.compression.lz4.streams.1.3.8.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\k4os.hash.xxhash\\1.0.8\\k4os.hash.xxhash.1.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\mahapps.metro\\2.0.0\\mahapps.metro.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\materialdesigncolors\\5.2.1\\materialdesigncolors.5.2.1.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\materialdesignthemes\\5.2.1\\materialdesignthemes.5.2.1.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\materialdesignthemes.mahapps\\5.2.1\\materialdesignthemes.mahapps.5.2.1.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\9.0.0\\microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.2\\microsoft.data.sqlclient.5.2.2.nupkg.sha512",
|
||||
@@ -29,7 +34,7 @@
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.1\\microsoft.netcore.platforms.1.1.1.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.xaml.behaviors.wpf\\1.1.31\\microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.xaml.behaviors.wpf\\1.1.39\\microsoft.xaml.behaviors.wpf.1.1.39.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\mysql.data\\9.2.0\\mysql.data.9.2.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\13.0.2\\newtonsoft.json.13.0.2.nupkg.sha512",
|
||||
|
||||
Reference in New Issue
Block a user