5

Here is my Grid

enter image description here

Based on the path i have to open a file location of the my path

My grid code look like this

<telerik:RadGridView  Grid.Row="7" 
                      Grid.Column="1" 
                      Grid.ColumnSpan="2" 
                      ShowGroupPanel="False" 
                      Name="InventoryDetailsGrid"
                      Foreground="#357BCC"                                              
                      GridLinesVisibility="Horizontal"
                      AutoGenerateColumns="True"> 
</telerik:RadGridView>

I tired to open based on the path open file location dialog box

for example :- when I was click on the path I want look like same

enter image description here

I Can't find solution help me Thank you

Sanjay Ranavaya
  • 587
  • 4
  • 19

1 Answers1

6

Finally I find the solution

 <telerik:RadGridView  Grid.Row="7" Grid.Column="1" Grid.ColumnSpan="2" ShowGroupPanel="False" 
                                              Name="InventoryDetailsGrid"
                                              Foreground="#357BCC"                                              
                                              GridLinesVisibility="Horizontal"
                                              AutoGenerateColumns="False">
                            <telerik:RadGridView.Columns>
                                <telerik:GridViewHyperlinkColumn Header="Path" DataMemberBinding="{Binding Path}" />
                                <telerik:GridViewDataColumn DataMemberBinding="{Binding Title}" Header="Title" IsReadOnly="True"/>
                                <telerik:GridViewDataColumn DataMemberBinding="{Binding Size}" Header="Size" IsReadOnly="True"/>
                                <telerik:GridViewDataColumn DataMemberBinding="{Binding PathLength}" Header="Path Length" IsReadOnly="True"/>
                                <telerik:GridViewDataColumn DataMemberBinding="{Binding FileExtension}" Header="FileExtension" IsReadOnly="True"/>
                                <telerik:GridViewDataColumn DataMemberBinding="{Binding OfItem}" Header="Of Item" IsReadOnly="True"/>
                            </telerik:RadGridView.Columns>                          

</telerik:RadGridView> 

It's Working for me yeah....

Sanjay Ranavaya
  • 587
  • 4
  • 19