Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OffsetX and OffsetY set to zero are not respected #132

Open
DAC-TTN opened this issue Jun 7, 2023 · 0 comments
Open

OffsetX and OffsetY set to zero are not respected #132

DAC-TTN opened this issue Jun 7, 2023 · 0 comments

Comments

@DAC-TTN
Copy link

DAC-TTN commented Jun 7, 2023

I'm creating a ChildWindow using the following code:

ChildWindowManager.ShowChildWindowAsync(Application.Current.MainWindow, dialogView, ChildWindowManager.OverlayFillBehavior.FullWindow);

Here, dialogView is defined in the following way:

<simpleChildWindow:ChildWindow x:Class="Test.ChildView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:simpleChildWindow="clr-namespace:MahApps.Metro.SimpleChildWindow;assembly=MahApps.Metro.SimpleChildWindow"
             ChildWindowWidth="{Binding Width, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}"
             ChildWindowHeight="{Binding Height, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}"
             OffsetX="0"
             OffsetY="0"
             ShowTitleBar="False">
...
</simpleChildWindow:ChildWindow>

As expected, the height and width of the ChildWindow are being set correctly to the same values as the main window.
However, the OffsetX and OffsetY values are being overriden after initialization of the view, causing the ChildWindow to not fill the entire main window.
I assume this is caused by the logic in the ProcessMove method of the ChildWindow.cs class (https://github.com/punker76/MahApps.Metro.SimpleChildWindow/blob/develop/src/MahApps.Metro.SimpleChildWindow/ChildWindow.cs#L1139)

I am using version 2.2.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant