FModel/FModel/Views/Resources/Controls/ImagePopout.xaml
Masusder 8b95b403bb
Some checks failed
FModel QA Builder / build (push) Has been cancelled
New Explorer System (#619)
+ filter by types, find by references (UE5+), and a lot of other improvements

Co-authored-by: Asval <asval.contactme@gmail.com>
Co-authored-by: LongerWarrior <LongerWarrior@gmail.com>
2025-12-19 18:34:33 +01:00

17 lines
930 B
XML

<adonisControls:AdonisWindow x:Class="FModel.Views.Resources.Controls.ImagePopout"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:FModel.Views.Resources.Controls"
xmlns:adonisControls="clr-namespace:AdonisUI.Controls;assembly=AdonisUI"
WindowStartupLocation="CenterScreen" IconVisibility="Collapsed">
<DockPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<controls:MagnifierManager.Magnifier>
<controls:Magnifier Radius="150" ZoomFactor=".7" />
</controls:MagnifierManager.Magnifier>
<Border BorderBrush="#3b3d4a" BorderThickness="1" HorizontalAlignment="Center" VerticalAlignment="Center">
<Image x:Name="ImageCtrl" UseLayoutRounding="True" />
</Border>
</DockPanel>
</adonisControls:AdonisWindow>