I want to use a Track-Bar
to change a Form
's opacity.
This is my code:
decimal trans = trackBar1.Value / 5000;
this.Opacity = trans;
When I build the application, it gives the following error:
Cannot implicitly convert type decimal to double
I have tried using trans
and double
, but then the Control
doesn't work. This code worked fine in a past VB.NET project.
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…