mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-05-30 21:25:17 +08:00
Update release
This commit is contained in:
+1
-1
@@ -18809,7 +18809,7 @@ Ribbon Containers
|
|||||||
};
|
};
|
||||||
|
|
||||||
/// <summary>Ribbon tab page control, adding to the Pages property of a <see cref="GuiRibbonTab"/>.</summary>
|
/// <summary>Ribbon tab page control, adding to the Pages property of a <see cref="GuiRibbonTab"/>.</summary>
|
||||||
class GuiRibbonTabPage : public GuiTabPage, public Description<GuiRibbonTabPage>
|
class GuiRibbonTabPage : public GuiTabPage, public AggregatableDescription<GuiRibbonTabPage>
|
||||||
{
|
{
|
||||||
friend class GuiRibbonGroupCollection;
|
friend class GuiRibbonGroupCollection;
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
+11
-11
@@ -8213,22 +8213,22 @@ WindowsForm
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wheelMessage)
|
if(wheelMessage)
|
||||||
{
|
{
|
||||||
info.wheel = GET_WHEEL_DELTA_WPARAM(wParam);
|
info.wheel=GET_WHEEL_DELTA_WPARAM(wParam);
|
||||||
wParam = GET_KEYSTATE_WPARAM(wParam);
|
wParam=GET_KEYSTATE_WPARAM(wParam);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
info.wheel = 0;
|
info.wheel=0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nonClient)
|
if (nonClient)
|
||||||
{
|
{
|
||||||
info.ctrl = WinIsKeyPressing(VKEY::_CONTROL);
|
info.ctrl = WinIsKeyPressing(VKEY::_CONTROL);
|
||||||
info.shift = WinIsKeyPressing(VKEY::_SHIFT);
|
info.shift = WinIsKeyPressing(VKEY::_SHIFT);
|
||||||
info.left = WinIsKeyPressing(VKEY::_LBUTTON);
|
info.left= WinIsKeyPressing(VKEY::_LBUTTON);
|
||||||
info.middle = WinIsKeyPressing(VKEY::_MBUTTON);
|
info.middle= WinIsKeyPressing(VKEY::_MBUTTON);
|
||||||
info.right = WinIsKeyPressing(VKEY::_RBUTTON);
|
info.right = WinIsKeyPressing(VKEY::_RBUTTON);
|
||||||
|
|
||||||
POINTS point = MAKEPOINTS(lParam);
|
POINTS point = MAKEPOINTS(lParam);
|
||||||
@@ -8238,11 +8238,11 @@ WindowsForm
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
info.ctrl = (wParam & MK_CONTROL) != 0;
|
info.ctrl=((VKEY)wParam & VKEY::_CONTROL)!=(VKEY)0;
|
||||||
info.shift = (wParam & MK_SHIFT) != 0;
|
info.shift=((VKEY)wParam & VKEY::_SHIFT)!= (VKEY)0;
|
||||||
info.left = (wParam & MK_LBUTTON) != 0;
|
info.left=((VKEY)wParam & VKEY::_LBUTTON)!= (VKEY)0;
|
||||||
info.middle = (wParam & MK_MBUTTON) != 0;
|
info.middle=((VKEY)wParam & VKEY::_MBUTTON)!= (VKEY)0;
|
||||||
info.right = (wParam & MK_RBUTTON) != 0;
|
info.right=((VKEY)wParam & VKEY::_RBUTTON)!= (VKEY)0;
|
||||||
|
|
||||||
POINTS point = MAKEPOINTS(lParam);
|
POINTS point = MAKEPOINTS(lParam);
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user