mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-12 03:22:32 +02:00
4ec98cfab1
* (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
22 lines
549 B
C#
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);
|
|
}
|
|
}
|
|
}
|