Button and TabConrol Mixin

0
0

Hello,

I’ve tried to follow the deployment video explaining how to add a mixin file to change a control appearance but not sure why it’s not working for me.

I’ve attached the sample project written in vb.net and trying to change appearance of button and Tab control.

For tab control I’ve tried to use CSS with css styles added in the default.html that’s also not working.

Private Sub FrmMainWindow_Load(sender As Object, e As EventArgs) Handles Me.Load
TabControl1.CssClass = “myTabs”
End Sub

<style>

.mytabs .tab {
background-color: #2c3e50;
color: red;
}

.mytabs .tab-page {
background-color: #2c3e50;
color: red;
}

.mytabs .tab-page:hover {
background-color: #34495e;
}

.mytabs .tab-page[selected] {
background-color: #1abc9c;
color: white;
}

</style>

Attachment
  • You must to post comments
0
0

I was more saying that I’ve tried both options to change the button and tab control appearances using Mixin and CSS but nothing has worked for me.

The project I’ve attached doesn’t have CSS implementation, it’s only using Mixin to change control appearance, so if you could check what I’m missing that would be great.

Thanks
Shahbaz

  • JD
    • JD
    • Mar 1, 2026 - 4:52 pm
    Did you use theme builder? Just click on the button and change the styles or properties.
  • You must to post comments
0
0

Hi Shahbaz,

you’re using CSS which has nothing to do with the Theme Mixins of Wisej.NET.

Please refer to our documentation to learn how to use Themes and Mixins:

https://docs.wisej.com/theme-builder

Best regards
Frank

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.