UiModule2_CenterWinderPanel.cs 1.54 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2

using MultiLayout.UiModule;
潘栩锋's avatar
潘栩锋 committed
3 4 5 6 7 8
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
潘栩锋's avatar
潘栩锋 committed
9
using Unity;
潘栩锋's avatar
潘栩锋 committed
10

潘栩锋's avatar
潘栩锋 committed
11
namespace FLY.Winder.UI.Client.UiModule
潘栩锋's avatar
潘栩锋 committed
12
{
潘栩锋's avatar
潘栩锋 committed
13
    public class UiModule2_CenterWinderPanel : IUiModule2
潘栩锋's avatar
潘栩锋 committed
14 15 16 17 18
    {
        /// <summary>
        /// 控件标题
        /// 它的值取决于culture
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
19 20 21
        public string Title=>"中心收卷";
        public ComponentType Type => ComponentType.Graph;
        public bool IsUnique => true;
潘栩锋's avatar
潘栩锋 committed
22 23 24 25 26 27
        /// <summary>
        /// 控件
        /// 创建时,需要给它唯一ID,让加载自己的数据
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
潘栩锋's avatar
潘栩锋 committed
28
        public FrameworkElement GetComponent(int id, IUnityContainer container)
潘栩锋's avatar
潘栩锋 committed
29
        {
潘栩锋's avatar
潘栩锋 committed
30 31
            CenterWinderPanel graph = new CenterWinderPanel();
            container.BuildUp(graph);
潘栩锋's avatar
潘栩锋 committed
32 33 34 35 36 37 38 39 40
            return graph;
        }

        /// <summary>
        /// 控件缩略图,用于编辑界面时,大致看看
        /// 创建时,需要给它唯一ID,让加载自己的数据
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
潘栩锋's avatar
潘栩锋 committed
41
        public FrameworkElement GetThumbnail()
潘栩锋's avatar
潘栩锋 committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
        {
            return new System.Windows.Controls.Grid();
        }


        /// <summary>
        /// 给出全部控件ID, 控件自行删除没有的参数
        /// </summary>
        /// <param name="IDs"></param>
        public void MatchParam(int[] IDs)
        {

        }
    }
}