예제 #1
0
        private static void UiElement_Closed(object sender, EventArgs e)
        {
            FrameworkElement      uiElement = (FrameworkElement)sender;
            List <IMessagePathId> pathIds   = (List <IMessagePathId>)uiElement.Resources[messagePathIdsResourceKey];

            foreach (var pathId in pathIds)
            {
                VirtualRoot.RemoveMessagePath(pathId);
            }
        }
예제 #2
0
        public void Test()
        {
            List <PathPriority>   list  = new List <PathPriority>();
            List <IMessagePathId> paths = new List <IMessagePathId> {
                VirtualRoot.BuildEventPath <Event1>("Normal", LogEnum.DevConsole, this.GetType(), PathPriority.Normal, message => {
                    list.Add(PathPriority.Normal);
                }),
                VirtualRoot.BuildEventPath <Event1>("BelowNormal", LogEnum.DevConsole, this.GetType(), PathPriority.BelowNormal, message => {
                    list.Add(PathPriority.BelowNormal);
                }),
                VirtualRoot.BuildEventPath <Event1>("AboveNormal", LogEnum.DevConsole, this.GetType(), PathPriority.AboveNormal, message => {
                    list.Add(PathPriority.AboveNormal);
                })
            };

            VirtualRoot.RaiseEvent(new Event1());
            Assert.AreEqual(PathPriority.AboveNormal, list[0]);
            Assert.AreEqual(PathPriority.Normal, list[1]);
            Assert.AreEqual(PathPriority.BelowNormal, list[2]);
            foreach (var path in paths)
            {
                VirtualRoot.RemoveMessagePath(path);
            }
        }