Commit d8fb684b authored by 潘栩锋's avatar 潘栩锋 🚴

修复 改了FObj.Reflect 后 BlowingFixProfile 没有推送Param,应该 忘记继承INotifyPropertyChanged

parent 8cd795ec
...@@ -51,6 +51,6 @@ using System.Windows; ...@@ -51,6 +51,6 @@ using System.Windows;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示: //通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.36.0")] [assembly: AssemblyVersion("6.36.2")]
[assembly: AssemblyFileVersion("6.36.0")] [assembly: AssemblyFileVersion("6.36.2")]
[assembly: Guid("D12087A7-EEC4-4D9F-9269-8F20324F4B04")] [assembly: Guid("D12087A7-EEC4-4D9F-9269-8F20324F4B04")]
...@@ -51,6 +51,6 @@ using System.Windows; ...@@ -51,6 +51,6 @@ using System.Windows;
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值, // 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”: // 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.36.0")] [assembly: AssemblyVersion("6.36.2")]
[assembly: AssemblyFileVersion("6.36.0")] [assembly: AssemblyFileVersion("6.36.2")]
[assembly: Guid("72FBA808-FA10-43BF-8504-C6E814E031E7")] [assembly: Guid("72FBA808-FA10-43BF-8504-C6E814E031E7")]
...@@ -4,12 +4,13 @@ using FObjBase; ...@@ -4,12 +4,13 @@ using FObjBase;
using FObjBase.Reflect; using FObjBase.Reflect;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace FLY.Thick.Blowing.IService namespace FLY.Thick.Blowing.IService
{ {
public interface IBlowingFixProfileService public interface IBlowingFixProfileService: INotifyPropertyChanged
{ {
[PropertyPush] [PropertyPush]
BlowingFixProfileParam Param { get; } BlowingFixProfileParam Param { get; }
......
...@@ -4,6 +4,7 @@ using FObjBase; ...@@ -4,6 +4,7 @@ using FObjBase;
using Newtonsoft.Json; using Newtonsoft.Json;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
...@@ -21,6 +22,9 @@ namespace FLY.Thick.Blowing.Server ...@@ -21,6 +22,9 @@ namespace FLY.Thick.Blowing.Server
private string file_path = "profile.json"; private string file_path = "profile.json";
public event PropertyChangedEventHandler PropertyChanged;
public BlowingFixProfile() public BlowingFixProfile()
{ {
......
...@@ -51,6 +51,6 @@ using System.Windows; ...@@ -51,6 +51,6 @@ using System.Windows;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示: //通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.36.1")] [assembly: AssemblyVersion("6.36.4")]
[assembly: AssemblyFileVersion("6.36.1")] [assembly: AssemblyFileVersion("6.36.4")]
[assembly: Guid("38E0D8EC-4D1C-49FF-AB08-6289294C5BD4")] [assembly: Guid("38E0D8EC-4D1C-49FF-AB08-6289294C5BD4")]
...@@ -51,7 +51,7 @@ using System.Windows; ...@@ -51,7 +51,7 @@ using System.Windows;
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值, // 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”: // 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.36.0")] [assembly: AssemblyVersion("6.36.2")]
[assembly: AssemblyFileVersion("6.36.0")] [assembly: AssemblyFileVersion("6.36.2")]
[assembly: Guid("A2277244-BCD4-485B-85F4-AAE96DA235B5")] [assembly: Guid("A2277244-BCD4-485B-85F4-AAE96DA235B5")]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment