This question is locked. New answers and comments are not allowed.
Hi,
I have the following Radgridview GridViewColumn :
I need to get the "CodSalaAtendimentoEventosAtendimento" and the "eventosUrgencia" ?
How can i access both controls and get e.g. the Textblock's value ?
Thanks in advance.
I have the following Radgridview GridViewColumn :
<telerik:GridViewColumn x:Name="ExamesSolicitados" Header="Exames Solicitados" HeaderTextAlignment="Center"> <telerik:GridViewColumn.CellTemplate> <DataTemplate> <StackPanel> <Controls:TextBlock x:Name="CodSalaAtendimentoEventosAtendimento" Text="{Binding CodSalaAtendimento}" Visibility="Collapsed" /> <userControls:EventosAtendimento x:Name="eventosUrgencia" ></userControls:EventosAtendimento> </StackPanel> </DataTemplate> </telerik:GridViewColumn.CellTemplate> </telerik:GridViewColumn>I need to get the "CodSalaAtendimentoEventosAtendimento" and the "eventosUrgencia" ?
How can i access both controls and get e.g. the Textblock's value ?
Thanks in advance.