I have a very simple Form. When I call Show() on it, it is not displayed.
- It is in the taskbar and resting on it in the taskbar displays the window in the taskbar popup.
- The Location is 0, 0 (to make it easy to find).
- The Size is 128, 98 so it has a size.
- If I create any other Form and the call Form.Show() on it at the same place – it works.
This is driving me nuts. Any ideas?
update: reduced sample to the key code (for others that make this mistake):
namespace AutoTagCore.net.windward.autotag.controls.start_here
{
partial class TemplatePopUp
{
private void InitializeComponent()
{
...
this.Opacity = 0D;
...
}
}
}
do you have some form of license call that needs to be made for the
DevExpress.XtraEditors.LabelControl()before any use of it is made.For XCeed Components you must place the call for Xceed.Grid.Licenser.LicenseKey in your main program startup before you attempt to use them.. It that possible with your DevExpress stuff?
Found it:
It’s your Opacity.
you have
should be