I haven't looked into this in depth, I thought maybe somebody has run into this already and may have a quick answer for me.My setup is basic, I just started a new solution, added a form with a WinFormManager and dropped a AppStylistRuntime onto it. I added an .isl file into my project and set its build action to embedded resource. In the constructor of my form I load the .isl as follows:using (Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("LSLSchedule.LSLScheduleStyle.isl"))
StyleManager.Load(stream);Followed by: this.appStylistRuntime1.ShowRuntimeApplicationStylingEditor(this, this.Text);The behaviour I'm seeing is that the app stylist does show, the control to select style sets and component roles but however I cannot not hover over components to get a tooltip and modify the L&F from there. Any ideas?
Ah, nevermind. The answer is simple.I attempted to set the StyleLibraryName in the appStylistRuntime properties. Removing this fixed the issue.Cheers.