What version of dotNet
I am using the SyntaxEditor DotNet addon for Silverlight.A lot of the code samples/documentation seem to have a slight towards WPF? (I'm guessing that the WPF version was written first, then ported to...
View ArticleRe: What version of dotNet
Hi Andre,Both the WPF and Silverlight versions are being written at the same time and they do share a codebase. The .NET Languages Add-on in both platforms are nearly identical other than a couple...
View ArticleRe: What version of dotNet
Thank you very much for your response.That helps clear things up and help me in implementing this requirement.I know you stated that this will be in the next release. I can understand the need to not...
View ArticleRe: What version of dotNet
Hi Andre,We're working on the 2011.2 version now, which is what that will appear in. I'd expect it in the next month or two.
View ArticleFormat Document support for .NET
I noticed in that there is no ITextFormatter implementation in the DotNet implementation of the addon. I assume that is why the FormatDocumentAction is not enabled and I can't click Format Document for...
View ArticleRe: Format Document support for .NET
I did a little bit of testing with the SimpleTextFormatter. Since it is based on the SimpleTextLanguage in QuickStart03, it needs work.I believe that to implement a CSharp Text Formatter, we could use...
View ArticleRe: Format Document support for .NET
Hi Andre,We do have a text formatter implementation for C#/VB on the TODO list. However at this time I can't yet say when it will be completed. We put several months of work into the .NET add-on and at...
View ArticleCorrect steps to add reference to external library
Hello!We wanna to buy your latest version of SyntaxEditor .NET Languages Add-on (for Silverlight), but before it we need to be shore, that we can simply add refences to external libraries for...
View ArticleRe: Correct steps to add reference to external library
Here's some lines of code you can use with the WPF add-on to load any .NET (non-Silverlight) assembly and generate cache files for it. For this sample we just created a new WPF project, added refs to...
View ArticleRe: Correct steps to add reference to external library
Correct me, if i'not right: to use and update(because libraries will be changed) references in my SL project I must buy WPF version also to generate type info? Even if I need only SL addon to work with
View ArticleRe: Correct steps to add reference to external library
Actually if you are just doing the code snippet I included above, you can reference the WPF libraries that are included with the Language Designer in the Silverlight Studio download only. That way you...
View ArticleRe: Correct steps to add reference to external library
Don't you wish to reflect all of this questions in documentation? : )
View ArticleRe: Correct steps to add reference to external library
Yes indeed... we've already updated our Assemblies documentation topic with the new information provided above (and more), which will be in the next maintenance release's documentation.
View ArticleHow to selectively exclude certain types from assembly?
Hi!I need to add an assembly to be known by IntelliPromt, but I also need to exclude some types and/or namespaces from showing by IntelliPromt. Is it possible?[Modified at 02/14/2012 12:14 PM]
View ArticleRe: How to selectively exclude certain types from assembly?
Hi Sergey,The easiest way to do that would be to mark those types with an EditorBrowsable attribute that indicates editors shouldn't show the type.
View ArticleRe: How to selectively exclude certain types from assembly?
Thank you a lot!Could you tell about other possible ways too?And how I can do this for compiled assemblies where I can change nothing?[Modified at 02/14/2012 11:10 PM]
View ArticleRe: How to selectively exclude certain types from assembly?
Hi Sergey,The other option is for you to override the completion provider. For instance in C#, you'd create a class that inherits CSharpCompletionProvider then override its OnSessionOpening method....
View ArticleRe: How to selectively exclude certain types from assembly?
Thank you, it's just what I need!
View ArticleRe: How to selectively exclude certain types from assembly?
Another question.I removed session item with text = "MyClass" and it works. But if I type "MyClass + dot" IntelliPromt shows "MyClass" members anyway. Is it possible to get full name of the item, for...
View ArticleRe: How to selectively exclude certain types from assembly?
Hi Sergey,The Tag property of each item should be an IResolverResult for this add-on. There are various possibilities of interfaces that inherit IResolverResult for each instance, such as...
View Article