protected override void OnSourceInitialized(EventArgs e)
		{
			base.OnSourceInitialized(e);

			new WindowPlacement().Load(this);

			var notificationAreaDpi = DpiChecker.GetNotificationAreaDpi();
			_component = new NotifyIconComponent(this);
			_component.ShowIcon("pack://application:,,,/Resources/ring.ico", ProductTitle, notificationAreaDpi.X);
		}
        protected override void OnSourceInitialized(EventArgs e)
        {
            base.OnSourceInitialized(e);

            new WindowPlacement().Load(this);

            var notificationAreaDpi = DpiChecker.GetNotificationAreaDpi();

            _component = new NotifyIconComponent(this);
            _component.ShowIcon("pack://application:,,,/Resources/ring.ico", ProductTitle, notificationAreaDpi.X);
        }