반응형
1.1 책 보면서 2.0 공부할라니까 많이 헷갈린다.
xmal 소스
<Grid x:Name="LayoutRoot" Background="White" >
<TextBox HorizontalAlignment="Left" VerticalAlignment="Top" Text="TextBox" TextWrapping="Wrap" Margin="33,78,0,0" Width="277.896" x:Name="txtBox"/>
</Grid>
<TextBox HorizontalAlignment="Left" VerticalAlignment="Top" Text="TextBox" TextWrapping="Wrap" Margin="33,78,0,0" Width="277.896" x:Name="txtBox"/>
</Grid>
cs 소스
//추가로 필요한 네임스페이스
using System.Windows.Threading;
public Page()
{
InitializeComponent();
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromMilliseconds(1000); // 1초
// timer.Interval = new TimeSpan(0, 0, 0, 0, 1000); // 1초
{
txtBox.Text = DateTime.Now.ToString();
}
using System.Windows.Threading;
public Page()
{
InitializeComponent();
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromMilliseconds(1000); // 1초
// timer.Interval = new TimeSpan(0, 0, 0, 0, 1000); // 1초
timer.Tick += new EventHandler(timer_Tick);
txtBox.Text = DateTime.Now.ToString();
timer.Start();
}
{
txtBox.Text = DateTime.Now.ToString();
}
반응형
'Dev > Silveright' 카테고리의 다른 글
[실버라이트] 동적 TextBlock 생성하기 (0) | 2008.08.21 |
---|---|
[Sliverlight] 몽달 이미지 마우스 따라 다니기 (0) | 2008.08.20 |
실버라이트 - Silverlight Key Enumeration (0) | 2008.08.05 |
Silverlight 1.1에서 2 Beta1으로 변경된 내용 정리 (0) | 2008.07.31 |
[실버라이트] KeyDown 이벤트 만들기 (0) | 2008.07.30 |