画板基础基本完成

This commit is contained in:
艾竹
2023-05-14 00:31:25 +08:00
parent 147a84cf91
commit 8003cebf99
40 changed files with 3198 additions and 374 deletions

View File

@@ -387,6 +387,15 @@ namespace AIStudio.Wpf.DiagramApp.ViewModels
}
}
private ICommand _colorPickerCommand;
public ICommand ColorPickerCommand
{
get
{
return this._colorPickerCommand ?? (this._colorPickerCommand = new DelegateCommand(() => this.ColorPickerExecuted()));
}
}
private ICommand _screenshotCommand;
public ICommand ScreenshotCommand
{
@@ -708,6 +717,11 @@ namespace AIStudio.Wpf.DiagramApp.ViewModels
window.Show();
}
private void ColorPickerExecuted()
{
}
#region
private Color[] GenerateStandardGradients()
{