Advanced Forum Search Results
-
The rich text area control is interesting but don't you think you should be able to get/set its content as HTML?
Even if it only supported <spans> for bold, itallic, underline, <p>, <br/> it would be sooo much more practical.
I'd also love the ability to hook it up to a spell checker and red underline mispelled ...
-
I have a DataGrid that has as one of its columns a DatePicker (for the editing template). Is there a way to keep this but still allow a user to enter in a NULL date?
Thanks very much for any help.
-
Another problem is if the ACB was in a form and not a datagrid...how could you cause the dropdown to appear when the control receives focus? You don't have the beginEditing event.
-
That's an interesting approach Mog Liang. But I agree with AdamWM that the code initially posted should not caush an Exception to be thrown.
-
I'm using the version from the SL3 SDK.
I'd say this particular problem is resolved. However, would you mind looking at this AutoCompleteBox problem?
http://silverlight.net/forums/p/114463/257970.aspx#257970
-
Right. Yeah that seems to be the problem. You can't bind to a Run's text property.
-
I wanted to make it so when the AutoCompleteBox in my DataGrid received focus all items would be displayed at 1st so I set the Text property = "" on the Got_Focus Event. This causes a NULL Exception inside AutoCompleteBox:private void ACB_GotFocus(object sender, RoutedEventArgs e)
{
AutoCompleteBox ac = sender as ...
-
You are right. I don't know why I thought MinimumPrefixLength was 0 by default. Maybe it was in a prior version. But that fixed my problem. Thank you.
Have you had any luck setting
acb.focus();
acb.IsDropDownOpen = true;
in the click click event of your button?
-
TextBlocks alone did not work?
Or runs did not work for you?
-
I have, and yes it does work if you only use TextBlocks. I don't know if this is a bug or not but in any case it seems like a reasonable thing for someone to do (BInding to the text property of a run).