Tagged Questions

2
votes
2answers
801 views

C# Path Ellipsis without Win32 API call

I have a long path I'd like to shorten for displaying on a form using the ellipsis character(s?). I know there is the PathCompactPathEx Win32 API call, but I know there is a built-in .NET equivalent. ...
1
vote
2answers
386 views

WPF Data grid Text Ellipsis Not working

I have a column with long user comments. I load it using following code... <my:DataGridTextColumn Header="Message" Binding="{Binding UserMessage, Mode=OneWay}" ...
1
vote
4answers
1k views

Format DataGridView Cell without changing underlying value?

I have an unbound DataGridView (in VS 2008), of which one column contains a file path. I'd like to format the string using the TextRenderer class on the ColumnWidthChanged event without actually ...
0
votes
2answers
589 views

How to disable ellipsis of cell texts in a WindowsForms DataGridView?

I have a DataGridView in readonly mode in a .NET 3.5 (Visual Studio 2008) WinForms application. The cells' width is very small. Some of the cells contain a short number. Now, even with a small font, ...