[]
        
(Showing Draft Content)

GrapeCity.Forguncy.CellTypes.ISelectImageWindow

接口 ISelectImageWindow

内置图片选择对话窗口。

命名空间: GrapeCity.Forguncy.CellTypes
程序集: GrapeCity.Forguncy.CellTypes.dll
语法
public interface ISelectImageWindow : IWindow
示例
public partial class MenuItemsEditor : UserControl
{
    IBuilderContext _builderContext;
    public MenuItemsEditor(IBuilderContext builderContext)
    {
        InitializeComponent();

        _builderContext = builderContext;
    }

    private void SelectImageHyperlink_Click(object sender, RoutedEventArgs e)
    {
        var window = _builderContext.GetSelectImageWindow(ViewModel.ImagePath, ViewModel.IsBuiltInImage);
        window.Closed += (sender2, e2) =>
        {
            if (window.DialogResult == true)
            {
                ViewModel.ImagePath = window.ImagePath;
                ViewModel.IsBuiltInImage = window.BuiltIn;
            }
        }

        window.ShowDialog();
    }
}

属性

BuiltIn

返回选中图片是否是内置图片。

声明
bool BuiltIn { get; }
属性值
类型 描述
bool

ImageColor

返回选中图片的填充颜色

声明
string ImageColor { get; }
属性值
类型 描述
string

ImagePath

返回选中图片的名称。

声明
string ImagePath { get; }
属性值
类型 描述
string