Silverlight Datagrid 将自动生成的列转换为 Xaml 列集合

发布于 2024-08-19 06:07:34 字数 380 浏览 8 评论 0原文

这是我的场景...我在 SketchFlow 中进行原型设计,因此我为虚拟数据创建一个 Xml 文件,然后将其数据绑定到数据网格。然后我想设置一些东西,例如宽度和标题文本,而不是使用所有自动生成的详细信息。

所以问题是...是否有一种简单的方法将自动生成的列转换为 Xaml,以便可以自定义它们?

它只是作为减少开发/原型设计时间的一种方法。

提前致谢。

顺便说一句,我使用 xml 文件是因为我有相当具体的详细信息需要显示,而虚拟 Lorem Ipsum 数据并不能真正解决它。

更新

我使用 Silverlight Spy 希望能够以某种方式检查对象的 Xaml(我可以),但是自动生成的列仍然没有 Xaml。

Here is my scenario... I am prototyping in SketchFlow so I create an Xml file for my dummy data and then databind that to a data grid. I then want to setup some things like widths and header text instead of using all autogenerated details.

So here is the question... Is there an easy way to convert the Autogenerated columns into Xaml so they can be customised?

Its only as a way to decrease development/prototyping time.

Thanks in advance.

Btw, I use an xml file because I have fairly specific details that need to be displayed and the dummy Lorem Ipsum data doesnt really cut it.

Update

I used Silverlight Spy in the hope that somehow I could inspect the Xaml of the objects (I could) however there is still no Xaml for the autogenerated columns.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

或十年 2024-08-26 06:07:34

不幸的是,我认为这个功能不存在。当查看表达式混合中的列集合时,我希望看到的是“从数据源复制”按钮。

与此同时,我认为分屏/Xaml 模式和复制粘贴是下一个最佳选择。

<data:DataGridTextColumn Binding="{Binding [Column], Mode=OneWay}" Header="[HeaderText]"/>

当你发现自己一遍又一遍地这样做时,它会变得有点乏味......

希望你们中的一个人找到了解决方法

Unfortunately, I think this functionality is non existent. What I would have liked to see is a button 'Copy From Datasource' when looking at the column collection in expression blend.

In the meantime, I think Split Screen/Xaml mode and copy paste is the next best option.

<data:DataGridTextColumn Binding="{Binding [Column], Mode=OneWay}" Header="[HeaderText]"/>

It just gets a little tedious when you find yourself doing it over and over again...

Hopefully one of you out here have found a work around

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文