Description
The NoSystemBackground
property of the GraphicsWidget
class in the Editor
namespace is a boolean property that determines whether the widget should render without a system background. When set to true
, the widget will not display the default system background, allowing for custom rendering or transparency effects. This can be useful for creating widgets with unique visual styles or for integrating seamlessly with custom UI designs.
Usage
To use the NoSystemBackground
property, simply set it to true
or false
depending on whether you want the widget to render without the system background. This property is particularly useful when you want to create a custom look for your widget or when you need to ensure that the widget blends with the rest of your application's UI.
Example usage:
GraphicsWidget myWidget = new GraphicsWidget();
myWidget.NoSystemBackground = true; // Disables the system background
Example
GraphicsWidget myWidget = new GraphicsWidget();
myWidget.NoSystemBackground = true; // Disables the system background