mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-06-01 06:14:11 +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:
|
||||||
|
|||||||
@@ -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