123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Text;
- using System.Windows.Forms;
- using FastReport.Controls;
- namespace FastReport.Data.ConnectionEditors
- {
- /// <summary>
- /// The base class for all connection editors. This control is used when you edit
- /// the connection in the Data Wizard.
- /// </summary>
- [ToolboxItem(false)]
- public partial class ConnectionEditorBase : UserControl
- {
- /// <summary>
- /// Gets or sets a connection string.
- /// </summary>
- public string ConnectionString
- {
- get { return GetConnectionString(); }
- set { SetConnectionString(value); }
- }
- /// <summary>
- /// This method should construct the connection string from values entered by user.
- /// </summary>
- /// <returns>The connection string.</returns>
- protected virtual string GetConnectionString()
- {
- return "";
- }
- /// <summary>
- /// This method should parse the connection string and fill the user interface elements.
- /// </summary>
- /// <param name="value">The connection string.</param>
- protected virtual void SetConnectionString(string value)
- {
- }
- /// <summary>
- /// Updates the component layout on dpi change.
- /// </summary>
- public virtual void UpdateDpiDependencies()
- {
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="ConnectionEditorBase"/> class with default settings.
- /// </summary>
- public ConnectionEditorBase()
- {
- InitializeComponent();
- }
- }
- }
|