sharepoint Web 部件中的多行文本框

发布于 2024-07-15 03:06:24 字数 93 浏览 5 评论 0原文

如何在共享点 Web 部件中显示多行文本框字段?

当我单击 Web 部件上的“修改共享 Web 部件”时,我希望文本字段为多行框,

谢谢

How can I display a field that is a multi line text box in a sharepoint webpart?

when i click "modify shared webpart" on the webpart i would like the text field to me a multi line box

thanks

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

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

发布评论

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

评论(2

爱人如己 2024-07-22 03:06:24

就像是

var textBox = new TextBox();
textBox.TextMode = TextBoxMode.MultiLine;

Something like

var textBox = new TextBox();
textBox.TextMode = TextBoxMode.MultiLine;
芸娘子的小脾气 2024-07-22 03:06:24

您还必须编写渲染以适应您所处的模式:

if( (WebPartManager.DisplayMode == WebPartManager.DesignDisplayMode) || 
    (WebPartManager.DisplayMode == WebPartManager.EditDisplayMode) ) {
       //Show your textbox
} else {
       //Render as text
}

You'll also have to write your rendering to be sensitive to what mode you're in:

if( (WebPartManager.DisplayMode == WebPartManager.DesignDisplayMode) || 
    (WebPartManager.DisplayMode == WebPartManager.EditDisplayMode) ) {
       //Show your textbox
} else {
       //Render as text
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文