1234567891011121314151617181920 |
- using Avalonia.Media;
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace Editopia.Editor.Design
- {
- public class Brushes
- {
- private ImageBrush _mainBackgroundBrush = new ImageBrush(new Avalonia.Media.Imaging.Bitmap("resm:Editopia.Editor.Assets.background_acc.png"));
-
- public IImageBrush ThemeBackgroundBrush
- {
- get
- {
- return _mainBackgroundBrush;
- }
- }
- }
- }
|