You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use a window so that when you move the mouse - a one-size window. If you do not - the other window size
But reducing the window - is the minimum size of the width of the window
The problem appeared after the transition from version 0.14 to version 1.1.2
This on startup
This on mouse enter:
And after mouse leave:
usingSystem.Windows;usingSystem.Windows.Input;namespaceMetroProblem{/// <summary>/// Логика взаимодействия для MainWindow.xaml/// </summary>publicpartialclassMainWindow{publicMainWindow(){InitializeComponent();OnMouseLeave();}privatevoidMainWindow_OnMouseEnter(objectsender,MouseEventArgse){this.Button.Visibility=Visibility.Visible;}privatevoidMainWindow_OnMouseLeave(objectsender,MouseEventArgse){OnMouseLeave();}privatevoidOnMouseLeave(){this.Button.Visibility=Visibility.Collapsed;}}}
The text was updated successfully, but these errors were encountered:
I use a window so that when you move the mouse - a one-size window. If you do not - the other window size
But reducing the window - is the minimum size of the width of the window
The problem appeared after the transition from version 0.14 to version 1.1.2
This on startup



This on mouse enter:
And after mouse leave:
Xaml:
and code-behind:
The text was updated successfully, but these errors were encountered: