diff --git a/test/Eto.Test/Sections/Behaviors/ToolTipSection.cs b/test/Eto.Test/Sections/Behaviors/ToolTipSection.cs new file mode 100644 index 0000000000..1bf663c411 --- /dev/null +++ b/test/Eto.Test/Sections/Behaviors/ToolTipSection.cs @@ -0,0 +1,14 @@ +using Eto.Forms; +namespace Eto.Test.Sections.Behaviors +{ + [Section("Behaviors", "ToolTip")] + public class ToolTipSection : AllControlsBase + { + protected override void LogEvents(Control control) + { + base.LogEvents(control); + control.ToolTip = $"ToolTip for {control.GetType().Name}"; + } + } +} +