2509031705
This commit is contained in:
parent
d3de8284f9
commit
276d8f0994
@ -136,7 +136,7 @@ namespace DualScreenDemo
|
|||||||
OverlayForm.Instance.topRightTimer.Stop();
|
OverlayForm.Instance.topRightTimer.Stop();
|
||||||
break;
|
break;
|
||||||
case "A281A4":
|
case "A281A4":
|
||||||
SafeInvokeAction("A281A4",() => OverlayForm.MainForm.ShowTopRightLabel("↑升2調 "));
|
SafeInvokeAction("A281A4",() => OverlayForm.MainForm.ShowTopRightLabel(" 女調 "));
|
||||||
OverlayForm.Instance.topRightTimer.Stop();
|
OverlayForm.Instance.topRightTimer.Stop();
|
||||||
break;
|
break;
|
||||||
case "A280A4":
|
case "A280A4":
|
||||||
@ -151,7 +151,7 @@ namespace DualScreenDemo
|
|||||||
OverlayForm.Instance.topRightTimer.Stop();
|
OverlayForm.Instance.topRightTimer.Stop();
|
||||||
break;
|
break;
|
||||||
case "A27DA4":
|
case "A27DA4":
|
||||||
SafeInvokeAction("A27EA4",() => OverlayForm.MainForm.ShowTopRightLabel("↓降2調 "));
|
SafeInvokeAction("A27EA4",() => OverlayForm.MainForm.ShowTopRightLabel(" 男調 "));
|
||||||
OverlayForm.Instance.topRightTimer.Stop();
|
OverlayForm.Instance.topRightTimer.Stop();
|
||||||
break;
|
break;
|
||||||
case "A27CA4":
|
case "A27CA4":
|
||||||
|
@ -1034,14 +1034,16 @@ namespace DualScreenDemo
|
|||||||
{
|
{
|
||||||
videoPlayerForm.SetVolume(videoPlayerForm.GetVolume() + 5);
|
videoPlayerForm.SetVolume(videoPlayerForm.GetVolume() + 5);
|
||||||
int vol = videoPlayerForm.GetVolume() - 100;
|
int vol = videoPlayerForm.GetVolume() - 100;
|
||||||
OverlayForm.MainForm.ShowTopRightLabel(vol.ToString(), null);
|
OverlayForm.MainForm.ShowTopRightLabel((vol+5).ToString(), null);
|
||||||
|
OverlayForm.Instance.topRightTimer.Stop();
|
||||||
};
|
};
|
||||||
musicDownButton.Click -= (sender, e) => { OverlayForm.MainForm.ShowTopRightLabelTime("音量 ↓", "a2 b4 a4"); };
|
musicDownButton.Click -= (sender, e) => { OverlayForm.MainForm.ShowTopRightLabelTime("音量 ↓", "a2 b4 a4"); };
|
||||||
musicDownButton.Click += (sender, e) =>
|
musicDownButton.Click += (sender, e) =>
|
||||||
{
|
{
|
||||||
videoPlayerForm.SetVolume(videoPlayerForm.GetVolume() - 5);
|
videoPlayerForm.SetVolume(videoPlayerForm.GetVolume() - 5);
|
||||||
int vol = videoPlayerForm.GetVolume() - 100;
|
int vol = videoPlayerForm.GetVolume() - 100;
|
||||||
OverlayForm.MainForm.ShowTopRightLabel(vol.ToString(), null);
|
OverlayForm.MainForm.ShowTopRightLabel((vol-5).ToString(), null);
|
||||||
|
OverlayForm.Instance.topRightTimer.Stop();
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user