DotNet 4.8.1 build of DotNetBar
This commit is contained in:
24
PROMS/DotNetBar Source Code/Editors/SystemOptions.cs
Normal file
24
PROMS/DotNetBar Source Code/Editors/SystemOptions.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
#if FRAMEWORK20
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace DevComponents.Editors
|
||||
{
|
||||
public class SystemOptions
|
||||
{
|
||||
internal static System.Windows.Forms.ControlStyles DoubleBufferFlag
|
||||
{
|
||||
get
|
||||
{
|
||||
#if FRAMEWORK20
|
||||
return System.Windows.Forms.ControlStyles.OptimizedDoubleBuffer;
|
||||
#else
|
||||
return System.Windows.Forms.ControlStyles.DoubleBuffer;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user