Tagged Questions

6
votes
4answers
2k views

Ellipsis at start of string in WPF ListView

I have a WPF ListView (GridView) and the cell template contains a TextBlock. If I add: TextTrimming="CharacterEllipsis" TextWrapping="NoWrap" on the TextBlock, an ellipsis will appear at the end of my ...
5
votes
2answers
1k views

Ellipsis notation in C#?

Where can I get info about implementing my own methods that have the ellipsis notation, e.g. static void my_printf(char* format, ...) { } Also is that called ellipsis notation or is there a ...
3
votes
3answers
85 views

Why do the strings in my collection cut off words?

I'm writing a PowerShell application specifically for Office 365 and I've come across a problem. var result = pipeline.Invoke(); // close the runspace runspace.Close(); // convert the script result ...
3
votes
1answer
517 views

How do I detect if a System.Windows.Forms.Label with AutoEllipsis is actually displaying ellipsis?

I have a Windows Forms Application where I display some client data in a Label. I have set label.AutoEllipsis = true. If the text is longer than the label, it looks like this: Some Text Some longe... ...
2
votes
2answers
806 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. ...
0
votes
1answer
445 views

Ellipsis with C# (ending on a full word)

I'm trying to implement ellipsis in Umbraco, the requirement being 15 characters of intro text but always ending on a full word. I thought of using XSLT, but then realised that I can use a simple ...