Hello World!
I use UltraCalculator on my main form which happens to contain a wallpaper.
I also use some other Infragistics Ultra controls, like UltraGrid, UltraTextEditor and UltraTree.
All of these controls are using Transparent BackColor and AlphaLevel in Appearance when they are not focused.
Excpet UltraCalculator, these controls are behaving as they should, they are transparent and their transparency depends on AlphaLevel set, soo the wallpaper can be seen.
However, UltraCalculator has BLACK background.
I figured that it might have a container beneath that has it's own backround set as black.
How do I get around this (without making my own calculator instead)?
Hi,
If UltraCalculator is not supporting Transparency, you should Submit an incident to Infragistics Developer Support. This is probably a bug which needs to be addressed.
In the mean time, you can probably work around the issue like so:
this.ultraCalculator1.Appearance.ImageBackground = this.BackgroundImage; this.ultraCalculator1.Appearance.ImageBackgroundOrigin = Infragistics.Win.ImageBackgroundOrigin.Container; this.ultraCalculator1.Appearance.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Tiled;
Many thanks for help, but I've tried this and the image is little distorted, as if it took a part of backround image beneath and moved it cca one centimeter down and right. It seems it will have to do for now.
Also, I will make sure to report probable calculator transparency bug to the developer team. I hope it will bi fixed soon.