Link to home
Start Free TrialLog in
Avatar of websss
websssFlag for Kenya

asked on

Bind textblock text value from DB - silverlight

Hi I can a WCF ria webservice and silverlight app

I need to pull some text from a table and display on a button but it's not working

Here is the code
BorderBrush="Black" Height="75" Foreground="Black" Name="btnF1" Click="btnF1_Click">
                        <TextBlock TextAlignment="Center" TextWrapping="Wrap" Name="txtF1">
                         <Run Text="{Binding FunctionKey,Mode=TwoWay}"></Run>
                                                    <LineBreak/>
                                                    <Run Text="{Binding DispositionText, Mode=TwoWay}"></Run>
                   </TextBlock>                    
                    </Button>

I'm trying to Bind textblock text value from DB table in in  wcf ria service entity framework model silverlight  project

But it won't work
Help!!
ASKER CERTIFIED SOLUTION
Avatar of Aaron Jabamani
Aaron Jabamani
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial