This question already has answers here:
How can I show a message box with details in WinForms?
(6 answers)
Closed 7 years ago.
Is there a way to have a Messagebox show at first the Error Description, and then if an Expand button is pressed, show a further error description? Maybe to show the exact error which .NET gives.
Here is example of WPF Common TaskDialog
Follow above link it might be helpful to you...
Related
This question already has answers here:
Visual Studio debugger - Displaying integer values in Hex
(7 answers)
Closed 2 years ago.
Image
Anyone else faced the same issue. Eveything was okay and now VS19 last version shows me this for list Count. Please don't give attention to the names I'm trying to fixed that from hour and a half.
There is an option in the context menu when you right click the value in the watch window called "Hexadecimal display" - try turning it off
This question already has answers here:
Process c# winforms button as keystroke?
(2 answers)
Closed 6 years ago.
Whenever button is clicked, key Ctrl+F1 should be pressed.
I found solution of the reverse process everywhere.
You need to: System.Windows.Forms.SendKeys.Send("^{F1}");
Full MSDN SendKeys documentation here
This question already has answers here:
A textbox/richtextbox that has syntax highlighting? [C#] [closed]
(8 answers)
Closed 7 years ago.
In my winform application I allow the user to write/read some c# code (simple text in a RichTextBox, I would like to add the functionality to highlight the syntax like VS or notepad++ does, nothing advanced like intellisense and so on, just the text colour change would do.
I've been looking around but I couldn't find anything, do you know if there's a ready to use library or something that I can use?
I found FastColoredTextBox component which seems to be exactly what I need, answering in here in case someone else needs it.
This question already has answers here:
Tag editing in a WPF TextBox
(2 answers)
Closed 7 years ago.
I'm not sure what is the correct term for this style but, can this style be possible in WPF textbox? More often, I see this here in this community when you asked a question and you are mandatory to put a Tags.
Sample Textbox Output
Thanks
I think you are looking for Tokenizing Control – Convert Text to Tokens Most of the work has already been done there you just need to modify the template according to what and how you wanted to show the controls
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Hide the taskbar using c#
hello I'm writing a program that allows me to control windows, my question is how can you hide
clock and taskbar??
Thx
You can refer Hide the taskbar using c#
Its almost the same question. You can download the sample project here