please help on these I landed myself into wholly new topic that i have no idea of how it goes
I want to animate text so that it moves from top of textblock to the bottom with time
I also want the text to be blinking while it moves downwards.
sounds fun to me to do it but spent some days trying using StoryBoard and doubleAnimation
no avail
please note am reading the text from a file
the code xaml
CharacterSpacing="0"
FontSize="29">
The csharp timer
my timer event
public void Timer_tick(object sender, EventArgs e)
{
String myvariable;
wordstype = mymenu.CheckWords();
String myword;
thatword = callmymethod.Mymethod(5);
Animatedtext.Text = thatword;
myword = tlbRandomWords.Text;
if (myword.ToString().ToUpper() == tlbuser.Text && tlbuser.Text != "")
{
counter++;
MessageBox.Show(counter.ToString());
}
}
{
String myvariable;
wordstype = mymenu.CheckWords();
String myword;
thatword = callmymethod.Mymethod(5);
Animatedtext.Text = thatword;
myword = tlbRandomWords.Text;
if (myword.ToString().ToUpper() == tlbuser.Text && tlbuser.Text != "")
{
counter++;
MessageBox.Show(counter.ToString());
}
}
Replies
Know the answer? Post it — somebody with the same question will find it here.