반응형
DispatcherTimer timer;
//함수1 내부
timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromSeconds(10);
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
//함수1 내부 끝
void timer_Tick(object sender, EventArgs e)
{
sbTest = (Storyboard)(wc.FindResource("SbBasicBgDown"));
sbTest.Begin();
timer.Stop();
}
//함수1 내부
timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromSeconds(10);
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
//함수1 내부 끝
void timer_Tick(object sender, EventArgs e)
{
sbTest = (Storyboard)(wc.FindResource("SbBasicBgDown"));
sbTest.Begin();
timer.Stop();
}
반응형
'→ 개발 > WPF' 카테고리의 다른 글
[WPF C#] 새로띄운 창(유저컨트롤)에서 값, 버튼 이벤트 가져오기 (0) | 2010.08.06 |
---|---|
[WPF] 키보드 키 눌렀을때 어떤키인지 알아보자! (2) | 2010.07.19 |
[WPF] 콤보박스에서 아이템 선택시 문자열 가져오기 (0) | 2010.07.14 |
[WPF] 새 WPF창 띄울때 마우스위치에 띄우기 (0) | 2010.07.12 |
[WPF] 확인 취소 가능한 MessageBox 만들기 (0) | 2010.07.12 |