-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request]: Track Bar "Back Color" needed in State#### Designer control(s) #304
Comments
Or "Should be transparent" like the KLabel / KCheckbox (etc.) controls |
Making it transparent like KLabel would work. Or handle transparency for the TrackBar.BackStyle palette definition. |
There is a "Hidden" public field public Form1()
{
InitializeComponent();
this.kryptonTrackBar15.DrawBackground = false;
} I will be making this "public in the designer"; But you can start to use it straight away 👍 |
It is (Was) set to not be browsable, so will not show up in intellisense: [EditorBrowsable(EditorBrowsableState.Never)]
[Browsable(false)]
public bool DrawBackground
{
get => !_drawTrackBar.IgnoreRender;
set => _drawTrackBar.IgnoreRender = !value;
} Just type it in and set it. |
Beautiful! I didn't realize intellisense could be set up to hide a public property. |
- Update Trackbar test app - Update example image - Allow rResharper to set body Expressions for Krypton-Suite/Standard-Toolkit#304
- Update Trackbar test app - Update example image - Allow rResharper to set body Expressions for Krypton-Suite/Standard-Toolkit#304
- Update Trackbar test app - Update example image for Krypton-Suite/Standard-Toolkit#304
Splitting this off from #296 to allow focused delivery of component functionality
The text was updated successfully, but these errors were encountered: