从导航中的按钮打开 Silverlight Web 资源
Open Silverlight web resource from a button in Navigation
我需要在本地 CRM 2015 的导航或功能区区域添加一个按钮。此按钮应打开现有的 Silverlight Web 资源。这可能吗?
编辑:
This MSDN 文章提到 URL 持有 URL 或 HTML 网络资源的值,这是否意味着 Silverlight 网络资源是不可能的?
Url
Specifies a URL or HTML Web Resource for a page to display in the main frame of the application when this subarea is selected.
您需要创建一个页面来托管 Silverlight 控件,如指定的那样here:
To display a Silverlight web resource outside an entity form or chart,
create an HTML web resource to be the host page for the Silverlight
web resource. Then use the $webresource: directive to open the HTML
web resource.
创建后,请确保在您的站点中引用页面 Web 资源 map/ribbon。
关于如何设置的很好的教程here。
我需要在本地 CRM 2015 的导航或功能区区域添加一个按钮。此按钮应打开现有的 Silverlight Web 资源。这可能吗?
编辑:
This MSDN 文章提到 URL 持有 URL 或 HTML 网络资源的值,这是否意味着 Silverlight 网络资源是不可能的?
Url
Specifies a URL or HTML Web Resource for a page to display in the main frame of the application when this subarea is selected.
您需要创建一个页面来托管 Silverlight 控件,如指定的那样here:
To display a Silverlight web resource outside an entity form or chart, create an HTML web resource to be the host page for the Silverlight web resource. Then use the $webresource: directive to open the HTML web resource.
创建后,请确保在您的站点中引用页面 Web 资源 map/ribbon。
关于如何设置的很好的教程here。