Files
UVtools/UVtools.WPF/Controls/Tools/ToolIPrintedThisFileControl.axaml.cs
T
Tiago Conceição 4ec98cfab1 v2.5.0
* (Add) Help - Material manager (F10): Allow to manage material stock and costs with statistic over time
* (Add) File - I printed this file (CTRL + P): Allow to select a material and consume resin from stock and print time from the loaded file
2021-02-21 03:38:37 +00:00

22 lines
549 B
C#

using Avalonia.Markup.Xaml;
using UVtools.Core.Operations;
namespace UVtools.WPF.Controls.Tools
{
public class ToolIPrintedThisFileControl : ToolControl
{
public OperationIPrintedThisFile Operation => BaseOperation as OperationIPrintedThisFile;
public ToolIPrintedThisFileControl()
{
InitializeComponent();
BaseOperation = new OperationIPrintedThisFile(SlicerFile);
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
}
}