From 7b96ea115d51fb721130fef8622500740dea7b08 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期四, 25 八月 2022 18:06:29 +0800
Subject: [PATCH] 2022年08月25日18:06:27

---
 HDL_ON/UI/UI2/FuntionControlView/Music/A31PlayMusicPage.cs |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/Music/A31PlayMusicPage.cs b/HDL_ON/UI/UI2/FuntionControlView/Music/A31PlayMusicPage.cs
index 71d6531..a74585d 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/Music/A31PlayMusicPage.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/Music/A31PlayMusicPage.cs
@@ -145,7 +145,7 @@
                  Dictionary<string, string> dic = new Dictionary<string, string>();
                  dic.Add(KeyProperty.mode, modeValueString);
                  //鍙戦�佹帶鍒舵寚浠�
-                 SendMethod.mMethod.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
+                 SendMethod.Current.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
              };
             ///娣诲姞鍠滅埍鐐瑰嚮浜嬩欢;
             playView.loveBtn.MouseUpEventHandler += (sender, e) =>
@@ -192,7 +192,7 @@
                             A31MusicModel.Current.palyLists.Clear();
                             if (A31MusicModel.Current.palyLists.Count == 0)
                             {
-                                SendMethod.mMethod.GetPalyList(A31MusicModel.Current.functionMusic);
+                                SendMethod.Current.GetPalyList(A31MusicModel.Current.functionMusic);
 
                             }
                         }
@@ -249,7 +249,7 @@
                     A31MusicModel.Current.functionMusic.SetAttrState(KeyProperty.volume, startVolume);
                     Dictionary<string, string> dic = new Dictionary<string, string>();
                     dic.Add(KeyProperty.volume, startVolume.ToString());
-                    SendMethod.mMethod.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
+                    SendMethod.Current.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
 
                 }
             };
@@ -263,7 +263,7 @@
                 A31MusicModel.Current.functionMusic.SetAttrState(KeyProperty.song_step, ValueProperty.down);
                 Dictionary<string, string> dic = new Dictionary<string, string>();
                 dic.Add(KeyProperty.song_step, ValueProperty.up);
-                SendMethod.mMethod.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
+                SendMethod.Current.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
 
             };
             playView.prevBtn.MouseUpEventHandler += (sender, e) =>
@@ -288,7 +288,7 @@
                 A31MusicModel.Current.functionMusic.SetAttrState(KeyProperty.on_off, status);
                 Dictionary<string, string> dic = new Dictionary<string, string>();
                 dic.Add(KeyProperty.on_off, status);
-                SendMethod.mMethod.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
+                SendMethod.Current.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
             };
             ///涓嬩竴鏇茬偣鍑讳簨浠�
             playView.nextBtn.MouseDownEventHandler += (sender, e) =>
@@ -297,7 +297,7 @@
                 A31MusicModel.Current.functionMusic.SetAttrState(KeyProperty.song_step, ValueProperty.down);
                 Dictionary<string, string> dic = new Dictionary<string, string>();
                 dic.Add(KeyProperty.song_step, ValueProperty.down);
-                SendMethod.mMethod.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
+                SendMethod.Current.SendControlCommand(A31MusicModel.Current.functionMusic, dic);
             };
             playView.nextBtn.MouseUpEventHandler += (sender, e) =>
             {
@@ -614,7 +614,7 @@
                         if (A31MusicModel.Current.palyLists.Count == 0)
                         {
                             //鑾峰彇姝屾洸鍒楄〃
-                            SendMethod.mMethod.GetPalyList(A31MusicModel.Current.functionMusic);
+                            SendMethod.Current.GetPalyList(A31MusicModel.Current.functionMusic);
 
                         }
                     }

--
Gitblit v1.8.0