Advanced Forum Search Results
-
Actually that's another problem on my code... since I define a transformGroup from Blend and I'm creating a new TransformGroup of the object instead of jus creating a new TranslateTransform to the group when the Panel gets to the animation procedure it has only 1 item on the TransformGroup (also thats why the Begin could not resolve the ...
-
I've to development environments, one with xp another one in my testing servers with Win2k3.
In both machines I've Blend 2.5 June Preview installed, but on the xp box I can see the Font Manager options and aso the embedding options inside the text controls.
In win2k3 I cant see any of this and also I have less fonts that can be used than ...
-
Thank you for pointing my mispell (I write it from memory).
I found the solution, I was creating a method to move my panel from A to B and I was sending the TranslateTransform as parameters to create de animatinos, I found out that I was sending the fromTranslate object as null and that why the setproperty could nof found it because it was ...
-
I've to development environments, one with xp another one in my testing servers with Win2k3.
In both machines I've Blend 2.5 June Preview installed, but on the xp box I can see the Font Manager options and aso the embedding options inside the text controls.
In win2k3 I cant see any of this and also I have less fonts that can be used than ...
-
I have tho TransformGroup on the xaml, also I'm moving the element before animating also changing the TranslateTransform property using this codeTransformGroup tg = new TransformGroup();TranslateTransform transform = CreateCenteredTranslateTransform();
tg.Children.Add(transform);
this.UserInformationPanel.RenderTransform = tg;
So I think ...
-
Thank you Steve
So basically if I use a transforGroup then I should access the property with the complete path (including the right index) ??
I have this on my xaml inside my RenderTransform tag for my ...
-
Than you Sergey, I think I've already swa this on other post, but I think my problem is how to set the targetProperty for an TransformationGroup...
-
Hello
I'm trying to add some animation from my managed code, what I'm trying to do is a simple x,y animation and add some opacity transition from point A to point B
I'm including the code for you to take a look:
Storyboard sbOut = this.Resources[storyBoardName] as Storyboard;
//we need to stop the story board ...