1234567891011121314151617 |
- using PixiEditor.Extensions.Wasm;
- namespace FlyUISample;
- public class FlyUiSampleExtension : WasmExtension
- {
- public override void OnInitialized()
- {
- WindowContentElement content = new WindowContentElement();
- var popup = Api.WindowProvider.CreatePopupWindow("Sample Window", content);
- popup.Width = 800;
- popup.Height = 720;
-
- popup.Show();
- }
- }
|