How can I get tooltip from coded source file in sequence?

I used XML documentation comments for tooltip in coded source file.

But I can’t see the tooltip I made in Sequence file.

This happens with only coded files I created.
how can I get tooltip from coded source file in sequence?

I appreciate you for your help in advance!

Hey @Jaeyoung_Jung
You can add the [Description] attribute in the source code of your class and its properties. This way, Studio can display those descriptions as tooltips.


You can find more details here:

Hope this helps!

1 Like

Thank you so much. I will try it ASAP and update you.

I’m using coded source file, not visual studio to create a custom activity. Thus [Description] doesn’t appear. What namespace should I use to get it?

@Jaeyoung_Jung
let’s try add:
using System.ComponentModel;
Then, you can apply [Description("Your description here...")] to the property or class.
I hope this way, Studio should be able to display the description as a tooltip.

1 Like

Hello, @Jaeyoung_Jung, @pikorpa ! It seems that the tooltip shows the documentation in .xaml files inside C# projects.

2 Likes

I love you @Ana-Maria_Radu !!!
Mulțumesc mult!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.