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: wpf/Kanban-Board/Cards.md
+6-18Lines changed: 6 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -186,16 +186,16 @@ You can replace the entire card template with your own design using [`SfKanban.C
186
186
187
187

188
188
189
-
## Cards ToolTip
189
+
## Cards tooltip
190
190
191
191
An interactive tooltip provides additional details about the cards on hovering the mouse over them.
192
192
193
193
### Enable tooltip for cards
194
194
195
-
To enable tooltip for the kanban cards, use the `IsToolTipEnabled` property of [SfKanban](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Kanban.SfKanban.html). By default, `IsToolTipEnabled` is set to `false.` To provide users with additional information or context about cards, simply set this property to true.
195
+
To enable tooltip for the kanban cards, use `IsToolTipEnabled` property of [SfKanban](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Kanban.SfKanban.html). By default, `IsToolTipEnabled` is set to `false.` To provide users with additional information or context about cards, simply set this property to `true.`
196
196
197
197
{% tabs %}
198
-
{% highlight xaml hl_lines="2" %}
198
+
{% highlight XAML hl_lines="2" %}
199
199
200
200
<kanban:SfKanban x:Name="kanban"
201
201
IsToolTipEnabled="True"
@@ -206,7 +206,7 @@ To enable tooltip for the kanban cards, use the `IsToolTipEnabled` property of [
206
206
</kanban:SfKanban>
207
207
208
208
{% endhighlight %}
209
-
{% highlight C# hl_lines="1" %}
209
+
{% highlight C# hl %}
210
210
211
211
this.kanban.IsToolTipEnabled = true;
212
212
@@ -232,47 +232,41 @@ public class ViewModel
232
232
task.Description = "Sorting is not working properly in DateTimeAxis";
233
233
task.Category = "Open";
234
234
task.Tags = new string[] { "Bug Fixing" };
235
-
task.ImageURL = new Uri(@"D:\Win\WPFToolTipKanban\WPFToolTipKanban\Assets\People\People_Circle1.png", UriKind.RelativeOrAbsolute);
236
235
Tasks.Add(task);
237
236
238
237
task = new KanbanModel();
239
238
task.Title = "New Feature";
240
239
task.Description = "Need to create code base for Gantt control";
241
240
task.Category = "Open";
242
241
task.Tags = new string[] { "GanttControl UWP" };
243
-
task.ImageURL = new Uri("/Assets/People/People_Circle2.png", UriKind.RelativeOrAbsolute);
244
242
Tasks.Add(task);
245
243
246
244
task = new KanbanModel();
247
245
task.Title = "UG";
248
246
task.Description = "Need to do post processing work for closed incidents";
249
247
task.Category = "In Progress";
250
248
task.Tags = new string[] { "Post processing" };
251
-
task.ImageURL = new Uri("/Assets/People/People_Circle3.png", UriKind.RelativeOrAbsolute);
252
249
Tasks.Add(task);
253
250
254
251
task = new KanbanModel();
255
252
task.Title = "UWP Issue";
256
253
task.Description = "Crosshair label template not visible in UWP.";
257
254
task.Category = "In Progress";
258
255
task.Tags = new string[] { "Bug Fixing" };
259
-
task.ImageURL = new Uri("/Assets/People/People_Circle4.png", UriKind.RelativeOrAbsolute);
260
256
Tasks.Add(task);
261
257
262
258
task = new KanbanModel();
263
259
task.Title = "WPF Issue";
264
260
task.Description = "Need to implement tooltip support for histogram series.";
265
261
task.Category = "Closed";
266
262
task.Tags = new string[] { "Bug Fixing" };
267
-
task.ImageURL = new Uri("/Assets/People/People_Circle6.png", UriKind.RelativeOrAbsolute);
268
263
Tasks.Add(task);
269
264
270
265
task = new KanbanModel();
271
266
task.Title = "WF Issue";
272
267
task.Description = "HorizontalAlignment for tooltip is not working";
273
268
task.Category = "Closed";
274
269
task.Tags = new string[] { "Bug fixing" };
275
-
task.ImageURL = new Uri("/Assets/People/People_Circle8.png", UriKind.RelativeOrAbsolute);
276
270
Tasks.Add(task);
277
271
}
278
272
}
@@ -287,7 +281,7 @@ You can customize the tooltip appearance by using the `ToolTipTemplate` property
287
281
The following code example shows the usage of DataTemplate.
288
282
289
283
{% tabs %}
290
-
{% highlight xaml hl_lines="2" %}
284
+
{% highlight XAML hl_lines="2" %}
291
285
292
286
<kanban:SfKanban x:Name="kanban"
293
287
IsToolTipEnabled="True"
@@ -358,7 +352,6 @@ public class ViewModel
358
352
task.Category = "Open";
359
353
task.ColorKey = "#FF5187C6";
360
354
task.Tags = new string[] { "Bug Fixing" };
361
-
task.ImageURL = new Uri("/Assets/People/People_Circle1.png", UriKind.RelativeOrAbsolute);
362
355
Tasks.Add(task);
363
356
364
357
task = new KanbanModel();
@@ -367,7 +360,6 @@ public class ViewModel
367
360
task.Category = "Open";
368
361
task.ColorKey = "#FF57B94C";
369
362
task.Tags = new string[] { "GanttControl UWP" };
370
-
task.ImageURL = new Uri("/Assets/People/People_Circle2.png", UriKind.RelativeOrAbsolute);
371
363
Tasks.Add(task);
372
364
373
365
task = new KanbanModel();
@@ -376,7 +368,6 @@ public class ViewModel
376
368
task.Category = "In Progress";
377
369
task.ColorKey = "#FF57B94C";
378
370
task.Tags = new string[] { "Post processing" };
379
-
task.ImageURL = new Uri("/Assets/People/People_Circle3.png", UriKind.RelativeOrAbsolute);
380
371
Tasks.Add(task);
381
372
382
373
task = new KanbanModel();
@@ -385,7 +376,6 @@ public class ViewModel
385
376
task.Category = "In Progress";
386
377
task.ColorKey = "#FFECB93C";
387
378
task.Tags = new string[] { "Bug Fixing" };
388
-
task.ImageURL = new Uri("/Assets/People/People_Circle4.png", UriKind.RelativeOrAbsolute);
389
379
Tasks.Add(task);
390
380
391
381
task = new KanbanModel();
@@ -394,7 +384,6 @@ public class ViewModel
394
384
task.Category = "Closed";
395
385
task.ColorKey = "#FF5187C6";
396
386
task.Tags = new string[] { "Bug Fixing" };
397
-
task.ImageURL = new Uri("/Assets/People/People_Circle6.png", UriKind.RelativeOrAbsolute);
398
387
Tasks.Add(task);
399
388
400
389
task = new KanbanModel();
@@ -403,7 +392,6 @@ public class ViewModel
403
392
task.Category = "Closed";
404
393
task.ColorKey = "#FFECB93C";
405
394
task.Tags = new string[] { "Bug fixing" };
406
-
task.ImageURL = new Uri("/Assets/People/People_Circle8.png", UriKind.RelativeOrAbsolute);
407
395
Tasks.Add(task);
408
396
}
409
397
}
@@ -412,4 +400,4 @@ public class ViewModel
412
400
{% endtabs %}
413
401
414
402
N>
415
-
* This property will only be applicable when `EnableToolTip` is set to true.
403
+
* This property will only be applicable when `IsToolTipEnabled` is set to `true.`
0 commit comments