Browse Source

做法更新

样式分支
pry 2 years ago
parent
commit
350420f174
5 changed files with 16 additions and 5 deletions
  1. +2
    -2
      BPASmartClient.Business/BPASmartClient.Business.csproj
  2. +1
    -1
      BPASmartClient.CustomResource/BPASmartClient.CustomResource.csproj
  3. +1
    -1
      BPASmartClient.Device/BPASmartClient.Device.csproj
  4. +1
    -1
      BPASmartClient.Model/BPASmartClient.Model.csproj
  5. +11
    -0
      BPASmartClient/MainWindow.xaml.cs

+ 2
- 2
BPASmartClient.Business/BPASmartClient.Business.csproj View File

@@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BPA.ApolloClient" Version="1.0.9" />
<PackageReference Include="BPA.Message" Version="1.0.11" />
<PackageReference Include="BPA.ApolloClient" Version="1.0.12" />
<PackageReference Include="BPA.Message" Version="1.0.12" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="6.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" />


+ 1
- 1
BPASmartClient.CustomResource/BPASmartClient.CustomResource.csproj View File

@@ -204,7 +204,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BPA.Message" Version="1.0.11" />
<PackageReference Include="BPA.Message" Version="1.0.12" />
</ItemGroup>

<ItemGroup>


+ 1
- 1
BPASmartClient.Device/BPASmartClient.Device.csproj View File

@@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BPA.Message" Version="1.0.11" />
<PackageReference Include="BPA.Message" Version="1.0.12" />
</ItemGroup>

<ItemGroup>


+ 1
- 1
BPASmartClient.Model/BPASmartClient.Model.csproj View File

@@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BPA.Message" Version="1.0.11" />
<PackageReference Include="BPA.Message" Version="1.0.12" />
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.1.2" />
</ItemGroup>



+ 11
- 0
BPASmartClient/MainWindow.xaml.cs View File

@@ -130,6 +130,17 @@ namespace BPASmartClient

private void Button_Click_1(object sender, RoutedEventArgs e)
{

//List<string> name = new List<string>();
//var a = AppDomain.CurrentDomain.GetAssemblies();
//foreach (var item in a)
//{
// if (item.FullName.Contains("Mork"))
// {
// name.Add(item.FullName);
// }
//}

NoticeDemoViewModel.OpenMsg(EnumPromptType.Info, this, "我是标题", "我是消息内容!我是消息内容!我是消息内容!我是消息内容!");
NoticeDemoViewModel.OpenMsg(EnumPromptType.Error, this, "我是标题", "我是消息内容!我是消息内容!我是消息内容!我是消息内容!");
NoticeDemoViewModel.OpenMsg(EnumPromptType.Warn, this, "我是标题", "我是消息内容!我是消息内容!我是消息内容!我是消息内容!");


Loading…
Cancel
Save