Breaking Change T1167317
Visible to All Users

The `IConnectionPropertiesPageView` interface has been extended with a new `ShowDataProviders` property

What Changed

We extended the IConnectionPropertiesPageView interface with the ShowDataProviders property.

Reasons for Change

This change allows you to configure the visibility of the drop-down Provider list on a view for the "Specify Connection Properties" page of the Data Source Wizard.

Clipboard-File-1.png

Impact on Existing Apps

The following compiler error occurs if you implemented the IConnectionPropertiesPageView interface in your application:
"error CS0535: 'CustomConnectionPropertiesPageView' does not implement interface member 'IConnectionPropertiesPageView.ShowDataProviders'".

How to Update Existing Apps

Implement the ShowDataProviders property to update your application.

C#
using DevExpress.DataAccess.Wizard.Views; // ... public partial class ConnectionPropertiesPageView : IConnectionPropertiesPageView { // ... public bool ShowDataProviders { get; set; } // ... }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.