|
|
|
WP - ต้องการเลือกข้อมูลจาก DataBinding และให้ส่งค่าไปอีกหน้า |
|
|
|
|
|
|
|
ใช้การส่งเหมือน QueryString ครับ
การเขียนโปรแกรมส่งค่า Parameter ข้าม Page ไปยัง Page ต่าง ๆ บน Windows Phone
|
|
|
|
|
Date :
2014-01-06 06:54:26 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สร้าง binding ที่ดึงมาจาก database
เมื่อแสดงค่าในแต่ละgrid แล้ว มีradiobotton หากต้องการคลิกเลือกข้อมูลชุดนั้น ให้ไปแสดงอีกหน้า ทำอย่างไร
Code
<Grid Grid.Column="0" Background="#FF71BAE8">
<StackPanel x:Name="rs" Margin="150,0,0,0" >
<StackPanel Orientation="Horizontal" >
<TextBlock Text="หมายเลขขบวนรถไฟ" Foreground="AliceBlue"/>
<TextBlock Text="{Binding Train_ID}" TextWrapping="Wrap" FontSize="25" Style="{StaticResource PhoneTextSubtleStyle}"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="เวลา" Foreground="AliceBlue"/>
<TextBlock Text="{Binding Time}" TextWrapping="Wrap" FontSize="25" Style="{StaticResource PhoneTextSubtleStyle}"/>
</StackPanel>
<StackPanel Orientation="Horizontal" >
<TextBlock Text="สถานะ" Foreground="AliceBlue"/>
<TextBlock Text="{Binding Status}" TextWrapping="Wrap" FontSize="25" Style="{StaticResource PhoneTextSubtleStyle}"/>
</StackPanel>
</StackPanel>
<Grid Grid.Column="1" >
<RadioButton Tag="{Binding Train_ID}" Name="sel" Checked="select_click" Content="{Binding Train_ID}" GroupName="ss1" HorizontalAlignment="Left" BorderBrush="White" Background="SkyBlue" Foreground="{StaticResource PhoneBackgroundBrush}" VerticalAlignment="Top" BorderThickness="3" Width="150" Padding="0,0,0,0"></RadioButton>
</Grid>
</Grid>
|
|
|
|
|
Date :
2014-01-06 23:21:12 |
By :
ThanatthaB |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบไปแล้วน่ะครับ
|
|
|
|
|
Date :
2014-01-07 06:56:40 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|