mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 08:10:50 +08:00
画板基础基本完成
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user