Пример #1
0
        private async void TestForm_Load(object sender, EventArgs e)
        {

            smartScriptListView1 = new SmartScriptListView(await SAI_Editor_Manager.Instance.worldDatabase.GetSmartScripts(33303, (int)SourceTypes.SourceTypeCreature));
            smartScriptListView1.View = View.Details;

            smartScriptListView1.Size = new Size(5000, 500);

            Controls.Add(smartScriptListView1);

            var sm = new SmartScript { entryorguid = 123, comment = "test" };

            smartScriptListView1.AddSmartScript(sm);

            smartScriptListView1.ExcludeProperty("source_type");
            smartScriptListView1.IncludeProperty("source_type");

            smartScriptListView1.ReplaceSmartScript(new SmartScript { entryorguid = 123, comment = "testing123" });


        }
Пример #2
0
        private async void TestForm_Load(object sender, EventArgs e)
        {
            smartScriptListView1      = new SmartScriptListView(await SAI_Editor_Manager.Instance.worldDatabase.GetSmartScripts(33303, (int)SourceTypes.SourceTypeCreature));
            smartScriptListView1.View = View.Details;

            smartScriptListView1.Size = new Size(5000, 500);

            Controls.Add(smartScriptListView1);

            var sm = new SmartScript {
                entryorguid = 123, comment = "test"
            };

            smartScriptListView1.AddSmartScript(sm);

            smartScriptListView1.ExcludeProperty("source_type");
            smartScriptListView1.IncludeProperty("source_type");

            smartScriptListView1.ReplaceSmartScript(new SmartScript {
                entryorguid = 123, comment = "testing123"
            });
        }