Advanced Forum Search Results
-
Hi, if you get the selected index of the control, then try enumerating the children of the listbox, that might get you closer? I had a similar problem, I'll try to find the post with the solution...
-
Hi, what's the actual problem your experiencing?
-
Any word from the MS guys out there? Is this a known issue and / or something that will be looked at in the future?
-
If you have a deep zoom metadata source that looks similar to "www.myserver.com/deepzoom/metadata.xml.9999" it will fail to load. The deep zoom metadata source only supports file extensions with 3 characters (there is an explicit check in the code - I found using reflector).
This is quite an infuriating bug, we aren't in the world ...
-
Yes, my class already does that. See the part at the bottom of my post about binding to a TextBlock.Text working just fine. For some reason it's only the CheckBox.IsChecked property that doesn't work correctly.
Thanks,
Mark Ingram
-
I have the following arrangement of radio buttons:
<RadioButton x:Name="AlignLeftRadioButton" Content="L" GroupName="TextAlignment"
IsClicked="{Binding FontOptions.TextAlignment, Converter={StaticResource TextAlignmentBooleanConverter}, ConverterParameter=Left}"/>
<RadioButton ...
-
But looking at the code in the BindingExpression class, it looks like it *should* work?
I've got around it by manually updating my data in the data context in the TextChanged method. It's not nice though.
-
I have a text box that is bound (two way) to the following property:
private String m_description;
public String Description
{
get { return m_description; }
...
-
I have managed to get it working with only minor effort. I had a look at the ListBox and ListBoxItem classes in Reflector and saw a simple override which creates the new ListBoxItem. I changed that to use a new ToggleListBoxItem class, then from there just overrode the onmouseleftbuttondown function. I also handle the onkeydown in ...
-
I have a ListBox control
that I want to change into having a toggle selection. i.e. Click once
on an item selects it, click again it deselects it. Also, clicking
another item in the list should do the default action of deselecting
the previous item and selecting the new one.
What's the best way of achieving this?
...