如何将数据网格列设置为来自 Windows Mobile 应用程序中数据库的超链接?
在 Windows Mobile 应用程序中,我有 DataGrid
控件,它在 page_load 上显示来自 Database
的数据。 我希望 DataGrid
列充当 HyperLink
,以便 MessageBox
或另一个窗口 Form
将打开并显示详细内容选定的 DatGrid
列。
In windows mobile application I have DataGrid
control which displays data from Database
on page_load.
I want DataGrid
column act as HyperLink
so that MessageBox
or another window Form
will open and show the detail contents of selected DatGrid
column .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
则只需捕获单击事件并使用该列的内容即可打开您的网址
如果您有一个包含三列的表,每列包含一个 url,
。然后,您可以将其用作超链接。
如果您只希望某个列启动您的链接,那么只需通过检查列号来考虑这一点。
从你的问题来看,你想要实现的目标有点不清楚,但如果你只是想在消息框中显示该项目......
You can just capture the click event and use the contents of the column to open your web address
If you had a table with three columns each containing a url.
You can then use that as a hyperlink
If you only want a certain column to launch your link then just take that into account by checking the column number.
It is a little unclear from your question exactly want you are trying to achieve but if you just want to show the item in a message box...