using Microsoft.UI.Xaml.Media;
using XFEExtension.NetCore.WinUIHelper.Interface.Services;
namespace SpaceEngineersBlueprintEditor.Interface.Services;
///
/// 全局背景图片设置服务
///
public interface IBackgroundImageService : IGlobalService
{
///
/// 初始化背景图片设置服务
///
/// 需要设置背景图片的页面
/// 亚克力层网格
void Initialize(Page page, Grid grid);
///
/// 设置背景图片
///
/// 背景图片
void SetBackgroundImage(ImageSource imageSource);
///
/// 重置背景图片
///
void ResetBackground();
}