123456789101112131415161718192021222324 |
- using System.Drawing;
- namespace Microsoft.Windows.Forms
- {
-
-
-
- public static partial class DefaultTheme
- {
-
-
-
- public static StringFormat StringFormat
- {
- get
- {
- StringFormat sf = (StringFormat)StringFormat.GenericTypographic.Clone();
- sf.FormatFlags |= StringFormatFlags.MeasureTrailingSpaces;
- sf.Trimming = StringTrimming.EllipsisCharacter;
- return sf;
- }
- }
- }
- }
|