MSDN 실버라이트3 레퍼런스 중 : http://msdn.microsoft.com/en-us/library/cc189084(VS.95).aspx

<Grid x:Name="LayoutRoot" Background="White">

  <!-- Just a TextBlock to show the output of the timer. -->
  <TextBlock Loaded="StartTimer" x:Name="myTextBlock" />
</Grid>



 

public void StartTimer(object o, RoutedEventArgs sender)
{
    System.Windows.Threading.DispatcherTimer myDispatcherTimer = new System.Windows.Threading.DispatcherTimer();
    myDispatcherTimer.Interval = new TimeSpan(0, 0, 0, 0, 100); // 100 Milliseconds
    myDispatcherTimer.Tick += new EventHandler(Each_Tick);
    myDispatcherTimer.Start();
}

// A variable to count with.
int i = 0;

// Raised every 100 miliseconds while the DispatcherTimer is active.
public void Each_Tick(object o, EventArgs sender)
{
    myTextBlock.Text = "Count up: " + i++.ToString();
}


저작자 표시 비영리 동일 조건 변경 허락
Posted by 데모집팀 황리건