You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ai-coding-assistant/prompt-library.md
+19-19Lines changed: 19 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,11 @@ This collection of prompts is not exhaustive and the Telerik UI for WinForms tea
17
17
18
18
## How to Use the Prompts
19
19
20
-
All prompts in this library target the [MCP Server]({%slug ai-mcp-server%}) via the `#telerik_winforms_assistant` handle. Make sure that you have installed and enabled the MCP Server before attempting to run the prompts.
20
+
All prompts in this library target the [MCP Server]({%slug ai-mcp-server%}) via the `#telerik-winforms-assistant` handle. Make sure that you have installed and enabled the MCP Server before attempting to run the prompts.
21
21
22
22
1. Browse the prompt library to find a prompt that suits your needs.
23
-
2. Copy the prompt text (including the `#telerik_winforms_assistant` handle).
24
-
3. (Optional) Customize the prompt as needed for your specific use case but keep the `#telerik_winforms_assistant` handle.<br/>When modifying the prompts, make sure the changes comply with the [recommendations]({%slug ai-overview%}#recommendations) for the AI Coding Assistant.
23
+
2. Copy the prompt text (including the `#telerik-winforms-assistant` handle).
24
+
3. (Optional) Customize the prompt as needed for your specific use case but keep the `#telerik-winforms-assistant` handle.<br/>When modifying the prompts, make sure the changes comply with the [recommendations]({%slug ai-overview%}#recommendations) for the AI Coding Assistant.
25
25
4. Run the prompt against the [MCP Server]({%slug ai-mcp-server%}).
26
26
27
27
>warning Always double-check the code and solutions proposed by any AI-powered tool before applying them to your project.
@@ -36,7 +36,7 @@ This section provides prompt ideas for the [currently supported assemblies]({%sl
36
36
37
37
### WinControls.UI Assembly
38
38
39
-
The __Telerik.Telerik.WinControls.UI__ assembly exposes many components. One of them is the [Telerik UI for WinForms RadDropDownList]({%slug winforms/dropdown-listcontrol-and-checkeddropdownlist/dropdownlist%}) control, which allows you to display a list of items from which the user can choose.
39
+
The __Telerik.WinControls.UI__ assembly exposes many components. One of them is the [Telerik UI for WinForms RadDropDownList]({%slug winforms/dropdown-listcontrol-and-checkeddropdownlist/dropdownlist%}) control, which allows you to display a list of items from which the user can choose.
40
40
41
41
<table>
42
42
<tr>
@@ -46,12 +46,12 @@ The __Telerik.Telerik.WinControls.UI__ assembly exposes many components. One of
46
46
<tr>
47
47
<td>
48
48
<pre><code>
49
-
#telerik_winforms_assistant Add combobox data bound to a collection of business objects. Each object should have a Name, Address, City and Country property. Use the Name to display the items in the UI
49
+
#telerik-winforms-assistant Add combobox data bound to a collection of business objects. Each object should have a Name, Address, City and Country property. Use the Name to display the items in the UI
50
50
</code></pre>
51
51
</td>
52
52
<td>
53
53
<pre><code>
54
-
#telerik_winforms_assistant Create a RadDropDownList bound to some sample data. The control should allow multiple selection
54
+
#telerik-winforms-assistant Create a RadDropDownList bound to some sample data. The control should allow multiple selection
55
55
56
56
</code></pre>
57
57
</td>
@@ -65,20 +65,20 @@ The __Telerik.Telerik.WinControls.UI__ assembly exposes many components. One of
65
65
<tr>
66
66
<td>
67
67
<pre><code>
68
-
#telerik_winforms_assistant Add pages dynamically to the pageview and change the page text when selecting the page
68
+
#telerik-winforms-assistant Add pages dynamically to the pageview and change the page text when selecting the page
69
69
</code></pre>
70
70
</td>
71
71
<td>
72
72
<pre><code>
73
-
#telerik_winforms_assistant Create PageView with 3 tabs and preselect the second tab
73
+
#telerik-winforms-assistant Create PageView with 3 tabs and preselect the second tab
74
74
</code></pre>
75
75
</td>
76
76
</tr>
77
77
</table>
78
78
79
79
### GridView Assembly
80
80
81
-
The __Telerik.Windows.Controls.GridView__ assembly provides the [Telerik UI for WinForms RadGridView]({%slug winforms/gridview%}) component, which enables you to create fully customizable and highly interactive interfaces for display and management of large data.
81
+
The __Telerik.WinControls.GridView__ assembly provides the [Telerik UI for WinForms RadGridView]({%slug winforms/gridview%}) component, which enables you to create fully customizable and highly interactive interfaces for display and management of large data.
82
82
83
83
<table>
84
84
<tr>
@@ -88,12 +88,12 @@ The __Telerik.Windows.Controls.GridView__ assembly provides the [Telerik UI for
88
88
<tr>
89
89
<td>
90
90
<pre><code>
91
-
#telerik_winforms_assistant Create a RadGridView with 100 records each having Id, Name and Company. Group the data by Company. Sort by name. Add aggregate count function for the company column.
91
+
#telerik-winforms-assistant Create a RadGridView with 100 records each having Id, Name and Company. Group the data by Company. Sort by name. Add aggregate count function for the company column.
92
92
</code></pre>
93
93
</td>
94
94
<td>
95
95
<pre><code>
96
-
#telerik_winforms_assistant Data bind the RadGridView control to a collection of items. Add columns for stocks data manually where one of the columns should use a combobox.
96
+
#telerik-winforms-assistant Data bind the RadGridView control to a collection of items. Add columns for stocks data manually where one of the columns should use a combobox.
97
97
</code></pre>
98
98
</td>
99
99
</tr>
@@ -106,18 +106,18 @@ The __Telerik.Windows.Controls.GridView__ assembly provides the [Telerik UI for
106
106
<tr>
107
107
<td>
108
108
<pre><code>
109
-
#telerik_winforms_assistant Create a RadGridView and bind it to a sample data. Change the selection text color and mouse over color of the datagrid cells and rows. Apply different color for rows based on a condition (alternating rows)
109
+
#telerik-winforms-assistant Create a RadGridView and bind it to a sample data. Change the selection text color and mouse over color of the datagrid cells and rows. Apply different color for rows based on a condition (alternating rows)
110
110
</code></pre>
111
111
</td>
112
112
<td>
113
113
<pre><code>
114
-
#telerik_winforms_assistant Bind the RadGridView to sample data. Demonstrate how to merge cells in control
114
+
#telerik-winforms-assistant Bind the RadGridView to sample data. Demonstrate how to merge cells in control
115
115
</code></pre>
116
116
</td>
117
117
</tr>
118
118
</table>
119
119
120
-
####RadDock Assembly
120
+
### RadDock Assembly
121
121
122
122
The __Telerik.WinControls.RadDock__ assembly provides the Telerik UI for WinForms RadDocking, which you can use to introduce a docking system like the Microsoft Visual Studio.
123
123
@@ -129,19 +129,19 @@ The __Telerik.WinControls.RadDock__ assembly provides the Telerik UI for WinForm
129
129
<tr>
130
130
<td>
131
131
<pre><code>
132
-
#telerik_winforms_assistant Create a basic RadDocking layout with two panes docked on the left, one on the right and two on the bottom of the control
132
+
#telerik-winforms-assistant Create a basic RadDocking layout with two panes docked on the left, one on the right and two on the bottom of the control
133
133
</code></pre>
134
134
</td>
135
135
<td>
136
136
<pre><code>
137
-
#telerik_winforms_assistant How to save and load the current docking layout
137
+
#telerik-winforms-assistant How to save and load the current docking layout
138
138
</code></pre>
139
139
</td>
140
140
</tr>
141
141
</table>
142
142
143
143
144
-
####RichTextEditor Assembly
144
+
### RichTextEditor Assembly
145
145
146
146
The __Telerik.WinControls.RichTextEditor__ assembly enables you to use the Telerik UI for WinForms RadRichTextEditor component, which provides advanced features for displaying and editing rich-text content.
147
147
@@ -153,12 +153,12 @@ The __Telerik.WinControls.RichTextEditor__ assembly enables you to use the Teler
153
153
<tr>
154
154
<td>
155
155
<pre><code>
156
-
#telerik_winforms_assistant Create a RadRichTextEditor and load a document. Associate the RichTextEditorRiboonBar to control editing and styling
156
+
#telerik-winforms-assistant Create a RadRichTextEditor and load a document. Associate the RichTextEditorRiboonBar to control editing and styling
157
157
</code></pre>
158
158
</td>
159
159
<td>
160
160
<pre><code>
161
-
#telerik_winforms_assistant I have a document already loaded inside RadRichTextEditor. I want to allow exporting in various formats
161
+
#telerik-winforms-assistant I have a document already loaded inside RadRichTextEditor. I want to allow exporting in various formats
0 commit comments