| 1234567891011121314151617181920212223 |
- using System.Windows.Forms;
- namespace Core.StlMes.Client.LgCommon
- {
- public class ucButton : Button
- {
- protected override bool ShowFocusCues
- {
- get
- {
- return false;
- }
- }
- public override System.Drawing.ContentAlignment TextAlign
- {
- get
- {
- return System.Drawing.ContentAlignment.MiddleCenter;
- }
- }
- }
- }
|