Note that there are some explanatory texts on larger screens.

plurals
  1. POHow I can perform write operation on cell of list view in wpf
    primarykey
    data
    text
    <p>I am developing wpf application using C# without using any framework.until now i successfully performed following task on list view .</p> <ul> <li>Displaying data in list view by binding with database table </li> <li>Getting the selected row data from list view based on primary key</li> </ul> <p>Now I am searching on google for creating and Editing cells of list view and found many links on winform list view editing.The link that i found on google on wpf but it is using framework.</p> <pre><code>http://tech.pro/tutorial/857/wpf-tutorial-using-the-listview-part-3-in-place-edit </code></pre> <p>Here is my list view .</p> <pre><code>&lt;ListView x:Name="lvitems" HorizontalAlignment="Left" Height="180" Margin="681,286,0,0" ItemsSource="{Binding Path=Items}" VerticalAlignment="Top" Width="277"&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridViewColumn Width="50" Header="S\No" DisplayMemberBinding="{Binding Path=id}" /&gt; &lt;GridViewColumn Width="50" Header="Code" DisplayMemberBinding="{Binding Path=Code}" /&gt; &lt;GridViewColumn Width="70" Header="Description" DisplayMemberBinding="{Binding Path=Description}" /&gt; &lt;GridViewColumn Width="50" Header="Rate" DisplayMemberBinding="{Binding Path=Rate}" /&gt; &lt;GridViewColumn Width="50" Header="Empty" DisplayMemberBinding="{Binding Path=Bottles}" /&gt; &lt;/GridView&gt; &lt;/ListView.View&gt; &lt;/ListView&gt; </code></pre> <p>Can some body tell me how to create and Edit the list view rows without using any framework ?Thanks</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload