DepartmentProject/DepartmentPortal/Common/ToolsDesktop/MainControls/MainControlViewEntityList.cs

58 lines
1.7 KiB
C#
Raw Normal View History

2022-03-18 22:48:14 +04:00
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Windows.Forms;
2022-03-18 22:48:14 +04:00
namespace ToolsDesktop.Controls
{
public partial class MainControlViewEntityList : UserControl, IControl, IControlChildEntity, IControlEntityList, IControlEntitySelectable
{
/// <summary>
/// Методы для реализации в generic-контроле
/// </summary>
protected IControlViewEntityList _controlViewEntityList;
#region IControlEntity
public Guid ControlId { get; protected set; }
public string Title { get; protected set; }
public AccessOperation AccessOperation { get; protected set; }
public void Open(ControlOpenModel model) => _controlViewEntityList?.OpenControl(model);
public IControl GetInstance() => _controlViewEntityList?.GetInstanceControl();
public string SaveToXml() => _controlViewEntityList?.SaveControlToXml();
public void LoadFromXml(string xml) => _controlViewEntityList?.LoadControlFromXml(xml);
#endregion
#region IControlEntityList
public IControlChildEntity ControlViewEntityElement { get; protected set; }
#endregion
#region IControlChildEntity
public string ParentPropertyName { get; set; }
public object ParentObject { get; set; }
public Guid? ParentId { get; set; }
#endregion
#region ISelectableControlManager
public Guid? SelectedId { get; protected set; }
public string SelectedText { get; protected set; }
public string GetTitleFromId(Guid id) => _controlViewEntityList?.GetTitleFromIdControl(id);
#endregion
/// <summary>
/// Констркутор
/// </summary>
public MainControlViewEntityList() => InitializeComponent();
}
}