コード例 #1
0
        public void Initialize()
        {
            if (PaletteSet is null)
            {
                PaletteSet = new AAW.PaletteSet("My Sweet App", Commands_Model.PALETTESET_COMMAND, new Guid("4d55ea36-b620-452b-8128-94147a934112"))
                {
                    MinimumSize = new Size(350, 350)
                };

                PaletteSet.AddVisual("General", new Main_View());
            }
        }
コード例 #2
0
        public void MySweetApp()
        {
            if (paletteset is null)
            {
                paletteset = new AAW.PaletteSet("My Sweet App", "MySweetApp", new Guid("4d55ea36-b620-452b-8128-94147a934112"))
                {
                    MinimumSize = new Size(350, 350)
                };

                paletteset.AddVisual("General", new Main_View());
            }

            paletteset.Visible = true;
        }