Update release

This commit is contained in:
Zihan Chen
2021-07-05 14:05:39 -07:00
parent 440315b245
commit 3cb24f42f3
8 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -18809,7 +18809,7 @@ Ribbon Containers
};
/// <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;
protected:
+5 -5
View File
@@ -8238,11 +8238,11 @@ WindowsForm
}
else
{
info.ctrl = (wParam & MK_CONTROL) != 0;
info.shift = (wParam & MK_SHIFT) != 0;
info.left = (wParam & MK_LBUTTON) != 0;
info.middle = (wParam & MK_MBUTTON) != 0;
info.right = (wParam & MK_RBUTTON) != 0;
info.ctrl=((VKEY)wParam & VKEY::_CONTROL)!=(VKEY)0;
info.shift=((VKEY)wParam & VKEY::_SHIFT)!= (VKEY)0;
info.left=((VKEY)wParam & VKEY::_LBUTTON)!= (VKEY)0;
info.middle=((VKEY)wParam & VKEY::_MBUTTON)!= (VKEY)0;
info.right=((VKEY)wParam & VKEY::_RBUTTON)!= (VKEY)0;
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.