WPF simle animation...need help
thank you...you've made a student very happy..thank you again<Window x:Class="triunghipenote.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"...
View ArticleWPF simle animation...need help
Try this code, though its not elegant, it works: <Grid> <Canvas Height="104" HorizontalAlignment="Left" Margin="74,24,0,0" Name="Canvas1" VerticalAlignment="Top" Width="164" />...
View ArticleWPF simle animation...need help
i've dicovered: i put the begintime, from 5 to five seconds, and now they appear one after each other... and now I have to assign the sounds to each appearence of the line.. please help me to this...
View ArticleWPF simle animation...need help
i've done the part with the opacity.....but i'm still looking for a way to separate the appearence of the lines. I must a play a different sound for each line.That's why so important for me to make the...
View ArticleWPF simle animation...need help
Here is the full code for each line animating seperately: <Grid> <Canvas Height="104" HorizontalAlignment="Left" Margin="74,24,0,0" Name="Canvas1" VerticalAlignment="Top" Width="164"...
View ArticleWPF simle animation...need help
Make the opacity of each line to 0 e.g. Opacity="0"create a doubleanimation for each line as you have done for two lines.To keep the pause between the visiblity between each line delay the duration for...
View ArticleWPF simle animation...need help
Hi there,you can do all you need with XAML only - there's no need for code. For...
View ArticleWPF simle animation...need help
so...now it's working....i want that the line should not be visible when i start the program, then when i press the button, it should appear and stay there...how i make this?and if i want this: the...
View ArticleWPF simle animation...need help
since you want to use animation you will have to include the animation reference in the code file like this:using System.Windows.Media.Animation;
View ArticleWPF simle animation...need help
no..not working: The type or namespace name 'Storyboard' could not be found (are you missing a using directive or an assembly reference?)
View ArticleWPF simle animation...need help
To execute the code put the following code in the click event of the buttonStoryboard anim = (Storyboard)rootElement.FindResource("mystoryboard");anim.Begin(this); This should work
View ArticleWPF simle animation...need help
great..i've solved the erro...thank you how can I make the animation start when I click the button?I must modify something in the code at the button section?
View ArticleWPF simle animation...need help
Hi,Under the resources of StackPanel "rootElement" change<Storyboard x:Name="mystoryboard">to<Storyboard x:Key="mystoryboard">You will not get the error.Hope this helps.Parvez Ansari WPF +...
View ArticleWPF simle animation...need help
hello. My name is Lucian, I'm from Romania, i'm a student, first year to informatics and i am new to wpf.I need to make a project for school. I have to animate some lines .I've searched on the internet...
View Article