文件名从 WinFrmUI/HStation.WinFrmUI.Xhs.Core/MainPanel.cs 修改 |
| | |
| | | |
| | | namespace HStation.WinFrmUI.Xhs.Core |
| | | { |
| | | public partial class MainPanel : DocumentPage |
| | | public partial class HomePageMainPanel : DocumentPage |
| | | { |
| | | public MainPanel() |
| | | public HomePageMainPanel() |
| | | { |
| | | InitializeComponent(); |
| | | this.xhsProjectTreeList1.SelectProject += XhsProjectTreeList1_SelectProjectAsync; |
| | |
| | | var selectchage = await _bll.GetByID(Convert.ToInt64(PrjID)); |
| | | if (selectchage != null) |
| | | { |
| | | propertyGridControl1.SelectedObject = new ProjectViewModel(selectchage); |
| | | propertyGridControl1.SelectedObject = new XhsProjectViewModel(selectchage); |
| | | } |
| | | } |
| | | |