src/FingersDance.Control.SyncSource/UserControlSyncSource.xaml.cs
changeset 188 e642ad0c366b
parent 186 83615722dbab
child 190 619ca3ae13c7
equal deleted inserted replaced
187:b266af50744c 188:e642ad0c366b
    56             try
    56             try
    57             {
    57             {
    58                 userControlTimeLine.thumbRotation((bool)sender);
    58                 userControlTimeLine.thumbRotation((bool)sender);
    59             }catch(Exception ){}
    59             }catch(Exception ){}
    60         }
    60         }
       
    61 
       
    62         public void setUserPlayerVolume(double val)
       
    63         {
       
    64             try
       
    65             {
       
    66                 UserControlPlayer.setSound(val);
       
    67             }
       
    68             catch (Exception) { }
       
    69         }
       
    70         public void setUserPlayerMute(bool b)
       
    71         {
       
    72             try
       
    73             {
       
    74                 UserControlPlayer.setMute(b);
       
    75             }
       
    76             catch (Exception) { }
       
    77         }
       
    78 
    61         #endregion
    79         #endregion
    62 
    80 
    63         #region TimeLine
    81         #region TimeLine
    64 
    82 
    65 
    83