当文本块嵌入数据模板中时编辑文本块的最大高度

发布于 2024-11-27 04:36:11 字数 122 浏览 1 评论 0 原文

如何将第二个参数传递给 Silverlight 应用程序 (Application_Startup()),编辑文本块的属性“MaxHeight”(文本块嵌入在数据模板中)?用户通过 Silverlight 控件的属性设置最大高度。

how do i pass in a 2nd parameter to a Silverlight application (Application_Startup()), edit a textblock's attribute 'MaxHeight' (textblock is embedded within a datatemplate)? Users set the maxheight via the Silverlight control's properties.

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

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

发布评论

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

评论(2

笑梦风尘 2024-12-04 04:36:11

您可以使用 Silverlight 的 initparams 传递多个参数。你必须使用逗号作为分隔符

<param name="initParams" value="favColor=Blue,callbackUrl=http://abc.def.com/mycallback.svc"/>

Thorsten

you can pass multiple parameters by using Silverlight's initparams. you have to use a comma as delimiter

<param name="initParams" value="favColor=Blue,callbackUrl=http://abc.def.com/mycallback.svc"/>

Thorsten

猫卆 2024-12-04 04:36:11

假设您的 MaxHeight 值在网页上可用(以 HTML 或 Javascript 形式),则有多种方法可以通过 Silverlight 插件与 HTML / DOM 进行交互...您可以使用 ScriptObjects... http://pietschsoft.com/post/2008/06/Silverlight-and-JavaScript-Interop-Basics.aspx

这是您要找的吗?

Assuming that your MaxHeight value is available on the web page (in HTML or Javascript) there are many ways to interact with the HTML / DOM from Silverlight plugin... you could use the ScriptObjects... http://pietschsoft.com/post/2008/06/Silverlight-and-JavaScript-Interop-Basics.aspx.

Is this what you are looking for?

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