New answers tagged expression-blend
0
You can set the BeginTime property of the second animation to be the duration of the first.
From the MSDN page:
The BeginTime property is useful for creating timelines that play in a sequence: by increasing the BeginTime of successive timelines that share the same parent Storyboard, you can stagger their play times.
The example on that page shows how ...
0
I think you are encountering the same problem that I did. Check out my own answer to my question:
http://stackoverflow.com/a/16621494/494094
0
Apparently this is not supported in Expression Blend 4, but supported in Blend for Visual Studio 2012. One way to do it by hand is to use ObjectAnimationsUsingKeyFrames:
<VisualState x:Name="MouseOver">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(Panel.Background)" Storyboard.TargetName="LayoutRoot">
...
1
Tools > Options > SketchFlow : set the Default sizes to what you want.
0
What is happening is that your triggers are firing sequentially and not simultaneously. Here is what is happening,
MouseLeftButtonDown event fired
First trigger activates, checks the Visibility, it is Visible so it changes it to Collapsed
Second trigger activates, checks the Visibility it is Collapsed so it changes it to Visible
The net result is that it ...
1
I think there's an easy way to answer your question... all you have to do is ask yourself what is the end result of anything you do in Blend?
The answer is XAML. So if this tool generates XAML for you, why wouldn't you work directly with XAML in the first place? XAML is human readable, it's easy to understand and master and between VS Intellisense and ...
0
You are able to select the screen in the "Objects and Timeline" list. Once you do, you get the expected resize handles and can even view the properties using the tab on the right and resize it manually there.
1
I would suggest attaching to the Loaded event during in the OnAttached method and do you initialization in there.
protected override void OnAttached()
{
base.OnAttached();
base.AssociatedObject.Loaded += onloaded;
}
private void onloaded(object sender, RoutedEventArgs e)
{
int a = Test1;
// Test1 should contain a value here.
...
0
In case you or anyone else is looking for the beehive sampke. I believe it's in the assets of this tutorial series on MSDN:
http://msdn.microsoft.com/en-us/expression/ee426917.aspx
0
Yeah got answer to my question.
I had downloaded Windows Phone SDK and Blend 4 comes free with it. So I could only make Windows Phone projects in that.
The project I wanted to downloaded are WPF & Silverlight based used in (WPF Projects). When I upgraded my Blend from free to full version (Ultimate i.e. Blend + WorkFlow) I got those projects.
0
I had a look at dependancy property solution. Although while this may work if implemented properly, for what i am trying to do, this is an overkill solution. So i have a simple solution that works now, see code below:
public partial class UserRoleDetails : UserControl
{
public string labelName
{
get {return this.txtRoleTitle.Text;}
...
1
Here's a pretty simple way to do it:
<Image Source="/Assets/ApplicationIcon.png" VerticalAlignment="Top" Margin="0">
<Image.Resources>
<Storyboard x:Name="Shift">
<DoubleAnimation From="0" To="100" Duration="0:0:2"
Storyboard.TargetName="Translation"
...
0
First of all, your class should implement INotifyPropertyChanged interface
Secondly, you should make labelName property as notify property.
Thirdly, you should bind text property of txtRoleTitle to your notify property.
Alright, you are done.
Sample: ...
0
You are setting the value of txtRoleTitle.Text in your constructor, at the point of the assignment the labelName property will not have a value.
I think you need to look at making your labelName a dependency property and binding your txtRoleTitle control in the user control's xaml. Take a look at this example : ...
2
Short answer, no.
What you can do however though that I do often is set your Designer & Code View to be side-by-side via View -> Split View Orientation -> Split Views Horizontally then drag the Blend window across two of the screens with the split obviously between the two screens. That works pretty well.
Otherwise you could have the design open in ...
0
I try to keep my dependencies to a minimum, so I implemented this myself instead of going with EventToCommand of MVVMLight. Works for me so far, but feedback is welcome.
Xaml:
<i:Interaction.Behaviors>
<beh:EventToCommandBehavior Command="{Binding DropCommand}" Event="Drop" PassArguments="True" />
</i:Interaction.Behaviors>
...
0
If one wants to have Blend and Visual Studio see what the datacontext has in design mode only, that can be defined with the debug options on the page. Say for example my page (in code-behind) binds its data context to MainVM in my nampespace WP8TestBed, by informing that info on the main page's attributes as d:DataContext, it is only used during design time ...
0
Dont know if you fixed it or not, but what i did, was the i edited it externally in Visual Studio, which i got installed - there's a link for edit externally in blend and then delete it with the remove button simply
0
I fixed it. I changed the debug platform on all the projects in my solution to Any CPU like this:
Opened the project in both Visual Studio and Blend
Opened the "configuration manager" (drop down menu beside debug/release "Start" button)
One of the projects' debug platform was set to "x86" so I clicked on ""
Set "New Platform" to "Any CPU"
Set "Copy ...
2
You can have an ItemTemplate:
<DataTemplate x:Key="MyItemTemplate">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"/>
<TextBlock ...
0
As a professional developer Expression Blend is invaluable and does many things which VS does not,
Just off top of my head,
Sample data,
Storyboarding,
Far superior datatemplate support
Way better resource dictionary support
Much better Custom Control tooling
Much better XAML control
If you are ...
1
I would not have created a custom control with multiple contentPresenter.
To achieve what you are trying to do, most of the time, you create a control with named parts (the default winrt control templates use this "named parts" mechanism).
When your custom control state changes, you simply show/hide one or more named parts.
This way your can provide a ...
1
The next step is to learn how to template a button. After that, you can use transition effect between "Pressed" and "Normal" states.
Edit 1
Example :
You must adapt these styles with your use (image instead of text etc..).
In Blend after past this snippet, right click on one button, Edit Template > Edit Current...
Or in Resources pannel : Right click on ...
Top 50 recent answers are included

