博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UWP 双向绑定,在ListView中有个TextBox,怎么获取Text的值
阅读量:5064 次
发布时间:2019-06-12

本文共 2183 字,大约阅读时间需要 7 分钟。

要求:评论宝贝的时候一个订单里面包含多个产品,获取对产品的评论内容哦

1. xaml界面

1  
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

要求:获取ListView中x:Name为tbContent的值(评论内容)

第一步:绑定TextBox的值使用Mode=TwoWay

<TextBox x:Name="tbContent" Text="{

Binding Path=Content, Mode=TwoWay}" BorderBrush="Transparent" TextWrapping="Wrap" Height="100" PlaceholderText="亲,写点什么吧,您的意见对其他买家提供很多帮助"/>

第二步:GoodsList集合的实体(也就是评论内容所在的实体模型)要实现INotifyPropertyChanged接口

 

1   public class Goods : INotifyPropertyChanged 2     { 3        private string content; 4         ///  5         /// 内容(评价宝贝使用) 6         ///  7         public string Content 8         { 9             get10             {11                 return content;12             }13             set14             {15                 content = value;16                 if (this.PropertyChanged != null)17                 {18                     this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("Content"));19                 }20             }21         }22         public event PropertyChangedEventHandler PropertyChanged;23     }

 

第三步:绑定数据源       
private
ObservableCollection
<
Goods
> GoodsList =
new
ObservableCollection
<
Goods
>();
//商品列表
lvDetail.ItemsSource = respOrder.OrderDetail.GoodsList;
GoodsList = respOrder.OrderDetail.GoodsList;
 
第四步:点击提交获取值
       在界面写评论内容会自动在数据源绑定的
GoodsList中的Content属性中

 

转载于:https://www.cnblogs.com/qq-smile/p/7273660.html

你可能感兴趣的文章
桥接模式
查看>>
每日求一录~20170704
查看>>
Java基础03 构造器与方法重载
查看>>
软件项目经理职责[转](
查看>>
jmeter进行https协议的测试
查看>>
LeetCode-Median of Two Sorted Arrays
查看>>
辗转相除求最大公约数
查看>>
MongoDB--架构搭建(主从、副本集)之副本集
查看>>
webpack 配置
查看>>
linux消息队列的使用
查看>>
Central Europe Regional Contest 2012 Problem c: Chemist’s vows
查看>>
Redis 主从集群搭建及哨兵模式配置
查看>>
nginx ------反向代理和负载均衡
查看>>
Linux下安装JDK
查看>>
[HDU] 3711 Binary Number [位运算]
查看>>
908. Smallest Range I
查看>>
ThinkPHP 分页实现
查看>>
jQuery在线手册
查看>>
APPLE-SA-2019-3-25-3 tvOS 12.2
查看>>
Python定义点击右上角关闭按钮事件
查看>>