覆盖 Chrome 类型 Web 部件

发布于 2024-10-27 03:20:35 字数 226 浏览 4 评论 0原文

我在 Sharepoint 2010 中制作了一个 Web 部件,并且我需要属性“Chrome Type”始终设置“None”值。

我一直在寻找强制组合框为“无”的方法,或者覆盖 C# 类中的“Chrome 类型”,但我没有找到任何方法来实现它们。设置此属性的最佳方法是什么?

覆盖 Chrometype

I made a Webpart in Sharepoint 2010, and I need that the property "Chrome Type" allways set a "None" value.

I was looking for ways to force the Combobox to "None", or overriding the "Chrome Type" in the C# class, but I didn't find any way to do them. What is the best way to set this property?

Override Chrometype

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

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

发布评论

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

评论(3

陈年往事 2024-11-03 03:20:35

另一个选项是使用 .webpart 文件通过 ChromeType 属性将其指定为默认值。您可以在 Visual Studio 解决方案中执行此操作(如下所示),也可以直接在 Web 部件库中编辑 .webpart 文件。

由于这是一种无代码方法,因此它似乎比 C# 路线简单一些。

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<webParts>
  <webPart xmlns="http://schemas.microsoft.com/WebPart/v3">
    <metaData>
      <type name="<<ClassName>>, $SharePoint.Project.AssemblyFullName$" />
  <importErrorMessage>$Resources:core,ImportErrorMessage;</importErrorMessage>
</metaData>
<data>
  <properties>
    <property name="Title" type="string">Custom List Form</property>
    <property name="Description" type="string">Provides A Data Entry Form For a SharePoint List</property>
    <!-- SEE CHROME TYPE BELOW -->    
    <property name="ChromeType" type="chrometype">None</property>
  </properties>
</data>
</webPart>
</webParts>

The other option is to use the .webpart file to specify this as the default using the ChromeType property. You can do this in your Visual Studio solution (as below) or you can edit the .webpart file directly in the Web Part Gallery.

As this is a no code approach, it seems a bit simpler than the C# route.

Try this:

<?xml version="1.0" encoding="utf-8"?>
<webParts>
  <webPart xmlns="http://schemas.microsoft.com/WebPart/v3">
    <metaData>
      <type name="<<ClassName>>, $SharePoint.Project.AssemblyFullName$" />
  <importErrorMessage>$Resources:core,ImportErrorMessage;</importErrorMessage>
</metaData>
<data>
  <properties>
    <property name="Title" type="string">Custom List Form</property>
    <property name="Description" type="string">Provides A Data Entry Form For a SharePoint List</property>
    <!-- SEE CHROME TYPE BELOW -->    
    <property name="ChromeType" type="chrometype">None</property>
  </properties>
</data>
</webPart>
</webParts>
拍不死你 2024-11-03 03:20:35

您应该能够修改。代码中 Web 部件的 ChromeType 属性。

请记住您在 Web 部件生命周期中的哪个位置执行此操作。

如果您将其作为 Render 方法的一部分来执行,那就太晚了 - 那时镶边已经被绘制了。

另一方面,如果您做得太早,那么当 SharePoint 应用工具部分中的设置时,您的设置将被覆盖。

看看在 OnPreRender 事件之类的事件中执行此操作。

You should be able to modify .ChromeType property of the web part in code.

Keep in mind where you do this in the web part life-cycle.

If you do it as part of the Render method it will be too late - the chrome has already been drawn by then.

On the other end of the scale if you do it to early then your setting will be overridden when SharePoint applies the settings from the toolpart.

Look at doing it in something like the OnPreRender event.

桃气十足 2024-11-03 03:20:35

这是使用 PartChromeType="None" 更改 ChromeType 的另一种解决方案

<WebPartPages:WebPartZone runat="server" Title="Banner" ID="Banner" PartChromeType="None" />

支持的选项有:

  • BorderOnly
  • 默认
  • None
  • TitleAndBorder
  • TitleOnly

要更新更改,有时需要删除并重新插入 Web 部件

This is another solution to change the ChromeType using PartChromeType="None"

<WebPartPages:WebPartZone runat="server" Title="Banner" ID="Banner" PartChromeType="None" />

The options supported are:

  • BorderOnly
  • Default
  • None
  • TitleAndBorder
  • TitleOnly

To update the changes is sometimes necessary to remove and reinsert the webpart

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