Advanced Forum Search Results
-
No but you can implement it yourself... If you don't want to include rich text objects like buttons, images and so on, you can just look at the Serialization routine and write a RTF encoder/decoder... As my RTE is using the common Silverlight letters to display text you also have access to all the formatting in a well known manner...
-
It doesn't work with "Handled=true" either... So this seems to be silverlight specific... Use your quick fix ;-)
-
Uh thank you for reporting... I already know why ;-)... Because the "handled" property of the key event was ignored in beta 1 for those keys but isn't in beta 2 ... So just do the following :
add "e.Handled = false;" to the second IF-statement of "ExtendedTextBox_KeyDown", like this:
if ...
-
Yes currently the online demos are not updated and also I have no chance to do this... Please post this comment on the blog where the demos are...
Just download the latest release from codeplex, which will work with the latest silverlight beta...
regards
christoph husse
-
Silverlight 2 Beta 2 is now supported...
-
A working demo is now available on: http://michaelsync.net/2008/05/04/silverlight-rich-text-editor-demo
-
Now a first "stable" release is available, named "RichtextEdit 1.2 Beta". I recommend testing it in FireFox because IE seems to be very unstable, maybe because of debugging support! I hope microsoft will fix this in Silverlight Beta 2...
-
That's nice to hear...
XAML output will be supported as sonn as XamlWriter is supported by Microsoft. XAML input will never be supported, because this is something special to Expression Blend and Visual Studio, and as you can see even Visual Studio 2008 is currently not able to edit XAML code in the Designer so how should my component be able ...
-
The rich text editor is ready...
Please take a look at:
http://michaelsync.net/2008/04/29/silverlight-the-first-rich-text-editor
or
http://www.codeplex.com/richtextedit
regards
Christoph Husse
-
>BlinkingPassword = true
I think this is not what most users want... The password chars are there to prevent someone viewing your password while typing...
Don't worry about such TAB things.... wait for silverlight BETA 2... My component is just a temporary thing until Microsoft supports it!