我正在使用C#开发wpf应用程序而不使用任何framework.until现在我在列表视图上成功执行了以下任务。
现在我在google上搜索创建和编辑列表视图的单元格,并在winform列表视图编辑中找到了很多链接。我在google上找到了wpf上的链接,但它正在使用框架。
http://tech.pro/tutorial/857/wpf-tutorial-using-the-listview-part-3-in-place-edit
这是我的列表视图。
<ListView x:Name="lvitems" HorizontalAlignment="Left" Height="180" Margin="681,286,0,0" ItemsSource="{Binding Path=Items}" VerticalAlignment="Top" Width="277">
<ListView.View>
<GridView>
<GridViewColumn Width="50" Header="S\No" DisplayMemberBinding="{Binding Path=id}" />
<GridViewColumn Width="50" Header="Code" DisplayMemberBinding="{Binding Path=Code}" />
<GridViewColumn Width="70" Header="Description" DisplayMemberBinding="{Binding Path=Description}" />
<GridViewColumn Width="50" Header="Rate" DisplayMemberBinding="{Binding Path=Rate}" />
<GridViewColumn Width="50" Header="Empty" DisplayMemberBinding="{Binding Path=Bottles}" />
</GridView>
</ListView.View>
</ListView>
有些正文可以告诉我如何在不使用任何框架的情况下创建和编辑列表视图行吗?谢谢