Skip to content

Commit 86c6df7

Browse files
committed
v2.5.7 (2)
1 parent fb7bba7 commit 86c6df7

File tree

8 files changed

+12
-0
lines changed

8 files changed

+12
-0
lines changed

.vs/QuickLibrary/v16/.suo

-1 KB
Binary file not shown.

QuickLibrary/NativeMan.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@ public enum ScrollBarCommands : uint
6767
SB_THUMBPOSITION = 4
6868
}
6969

70+
public enum ScrollBarDirection
71+
{
72+
SB_HORZ = 0,
73+
SB_VERT = 1,
74+
SB_CTL = 2,
75+
SB_BOTH = 3
76+
}
77+
7078
// STRUCTURES
7179

7280
[StructLayout(LayoutKind.Sequential)]
@@ -113,6 +121,9 @@ public struct SHELLEXECUTEINFO
113121

114122
// USER32 METHODS
115123

124+
[DllImport("user32.dll")]
125+
public static extern bool ShowScrollBar(IntPtr hWnd, ScrollBarDirection wBar, bool bShow);
126+
116127
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
117128
public static extern bool SetProcessDPIAware();
118129

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

QuickLibrary/obj/Release/QuickLibrary.csproj.FileListAbsolute.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ D:\Projects\quick-library\QuickLibrary\bin\Release\System.Threading.Tasks.Extens
3737
D:\Projects\quick-library\QuickLibrary\bin\Release\System.ValueTuple.xml
3838
D:\Projects\quick-library\QuickLibrary\bin\Release\Utf8Json.xml
3939
D:\Projects\quick-library\QuickLibrary\obj\Release\QuickLibrary.csproj.CoreCompileInputs.cache
40+
D:\Projects\quick-library\QuickLibrary\obj\Release\QuickLibrary.csprojAssemblyReference.cache
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)