Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ToolResizeControl.axaml.cs « Tools « Controls « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c88b965bc9fb64678d8f0c87796249cec3407d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Avalonia.Markup.Xaml;
using UVtools.Core.Operations;

namespace UVtools.WPF.Controls.Tools
{
    public class ToolResizeControl : ToolControl
    {
        public OperationResize Operation => BaseOperation as OperationResize;

        public ToolResizeControl()
        {
            InitializeComponent();
            BaseOperation = new OperationResize();
        }

        private void InitializeComponent()
        {
            AvaloniaXamlLoader.Load(this);
        }
    }
}