CmisSync.BubblesController.BubblesController C# (CSharp) 메소드

BubblesController() 공개 메소드

public BubblesController ( ) : System
리턴 System
        public BubblesController()
        {
            Program.Controller.AlertNotificationRaised += delegate(string title, string message)
            {
                ShowBubble(title, message, ToolTipIcon.Error);
            };

            Program.Controller.NotificationRaised += delegate(ChangeSet change_set)
            {
                ShowBubble("change_set.User.Name", FormatMessage(change_set),
                    ToolTipIcon.Info);
            };
        }