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
Related
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:
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...
This question already has answers here:
Creating Wizards for Windows Forms in C#
(3 answers)
Closed 9 years ago.
How do you make something like the things where you install programs by clicking the "Next" button and it will show you like a TextBox instead of a ComboBox like on a new Panel?
Sort of like changing Tabs on a TabControl but without showing the tabs.
You are probably looking for Wizard. You may see
Simple Wizard for Winforms - CodeProject
You may also take a look at WinForms Wizard from DevExpress but its not free.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
how to put checkboxes in datagrid in windows mobile 6 using c#?
How can I give checkbox options in a datagrid in windows mobile. Is it possible or not?
Please help me.
You can use a ListView and set the CheckBoxes property to true.