equal
deleted
inserted
replaced
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 |