CollectionChanged event is not fired
Do you know why Collection Changed is not fired when I add a new item in the collection?
RibbonTab newTab= new RibbonTab
{
Title = "newTab",
Id = "newTab",
Name = "newTab",
IsVisible = true
};
ComponentManager.Ribbon.Tabs.CollectionChanged += (sender, e) => {
//Handle the event...
};
ComponentManager.Ribbon.Tabs.Add(newTab) 0
Comments
-
This looks like an issue in BricsCAD .NET API. I am going to notify our developers about it0
-
Fixed in BricsCAD V24.20
-
Thanks a lot
0