Tagged Questions
0
votes
0answers
14 views
Fade Transition when changing Data of a Path
I have a Silverlight custom control inhertiting a Path.
When I change the Data Property of the Path (means when it is changed by binding), the new Data shouldnt be immeadiatly displayed but insetead ...
0
votes
1answer
63 views
Can't reuse style in silverlight 5
I create a custom image button and add some style. everything works fine. But when i try to reuse it in other buttons, it didn't work very well. only 1 button will follow the style, others are always ...
0
votes
0answers
20 views
loading visualstates in design view using visual studio
Has anyone tried getting the design view in VS2010 to update visualstates of a control in design view to load the appropriate states? I am able to load sample data in design view but my data contains ...
1
vote
0answers
97 views
Keep Silverlight TextBox Selection Shows while not focused?
As titled, and basically I wanted to do the same thing as this for WPF but in Silverlight instead.
But in my TextBox.LostFocus event, there is no e.Handled. And I also tried to use ...
1
vote
1answer
223 views
Dynamically scaling objects when visual state is active
I'm building a picture viewer with two visual states.
A) Application base state (no visualstate active)
1) "base" state (visualstate, empty storyboard)
2) "grid" with all the images (visualstate ...
0
votes
3answers
259 views
Silverlight Change Content Based on Control CheckState (Toggle multiple ContentPresenters)
I would like to change the content of a control based on its current CheckState (checked, unchecked, indeterminate). If possible I would like the solution to use only XAML and require no code behind.
...
0
votes
2answers
184 views
Setting the visual state of a control during design time
Is there a way to set the visual state of a control during design time in Miscrosoft Blend ?
(For example setting the state of a TextBox to "Disabled" so that one can see the disabled TextBox on the ...
0
votes
1answer
1k views
Silverlight: How to Create a VisualState for a Templated / Custom Control
I'm trying to create a templated/custom control in Silverlight.
The base control can be a System.Windows.Controls.Button. The button has the following visual states:
...
1
vote
2answers
2k views
Silverlight ToggleButton Checked VisualState not working
I'm trying to set up the style for VisualStates on a ToggleButton on Silverlight. Everything works, except the Checked state is not honoring the change in Rectangle.Fill, but the text color change is ...
0
votes
0answers
533 views
Visual States or Silverlight ComboBox
I'm trying to modify a siverlight combobox so that the "combo" part is ony visible when accessed. I changed the Opacity of the DropDownToggle part to 0 and changed the MouseOver Visual State to set ...
2
votes
1answer
718 views
Setting multiple visual states in one go?
I have four visual states defined each affecting different child controls within the same silver-light control.
Is it possible for me to create other visual states which invoke a combination of these ...
0
votes
1answer
282 views
How to get VisualStateGroup properties from a UserControl to reference in the ViewModel in Silverlight 4 C# code?
I'm trying to make visual states available in the ViewModel as some sort of enumeration (so that I don't have to use string literals or manually create and update static properties in order to be able ...
2
votes
0answers
600 views
Silverlight/Blend Datatrigger/EventTrigger STRANGE issue
My usercontrol contains 3000 NewDotControls in an itemscontrol. The ControlTemplate for NewDotControl is specified in a style that defines the visualstates and there is an eventtrigger that invokes a ...
0
votes
1answer
608 views
States Storyboards Animation in Expression Blend
What I am trying to do is learn how to animate various controls in Silverlight using Expression Blend.
I've started with trying to animate a listbox. I have a listbox whose Style I have tried to ...
1
vote
1answer
240 views
Best way to propagate VisualState changes
I am currently facing a scenario that I am unsure what is the best way to handle.
Scenario:
ControlA has 2 two custom visualstates, let’s call them “StateOn” and “StateOff”.
I now apply a template ...
1
vote
1answer
775 views
Visual-state in SilverLight? (how we use that)
Hi
I wrote simple template in xaml for button s.(for silver-light 4)
So when I try use "ControlTemplate.Triggers", I found that is impossible in silver-light, and we must use Visual-State in ...
0
votes
1answer
2k views
Silverlight 4.0 VisualStateManager
Can anyone please help me or is there anything I miss out? the visualstate is not triggered
xmlns:swi="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
...
0
votes
1answer
191 views
Control goes into a visual state - but actual visual states are not getting updated through xaml
I have two controls - control 2 inside of control 1. Control 1 and Control 2 have visual states.
I am facing the following problem:
Control 2 goes into a visual state, (have put a Debug.Write in ...