ningshuxia
2023-02-07 d027501182b03a0c036af712a2b7f31d55144562
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace IStation.WinFormUI 
{
    public class StepWizardHintInfo
    {
        public int Step { get; set; }
        public string HintLabel { get; set; }
        public System.Drawing.Point Pt { get; set; }
        public DevExpress.Utils.BeakPanelBeakLocation BeakLocation { get; set; }
        public System.Windows.Forms.Control HintDockCtrl { get; set; }
    }
}