1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- using System.Collections;
- using FastReport.Utils;
- namespace FastReport.Forms
- {
- internal partial class StringCollectionEditorForm : BaseDialogForm
- {
- private IList list;
- public IList List
- {
- get { return list; }
- set
- {
- list = value;
- tbLines.Text = Converter.IListToString(list);
- }
- }
- public string PlainText
- {
- get { return tbLines.Text; }
- set { tbLines.Text = value; }
- }
- private void StringCollectionEditorForm_FormClosed(object sender, FormClosedEventArgs e)
- {
- if (DialogResult == DialogResult.OK && list != null)
- Converter.StringToIList(tbLines.Text, list);
- }
- private void StringCollectionEditorForm_Shown(object sender, EventArgs e)
- {
- // needed for 120dpi mode
- tbLines.Width = ClientSize.Width - tbLines.Left * 2;
- tbLines.Height = btnOk.Top - tbLines.Top * 2;
- }
- public override void Localize()
- {
- base.Localize();
- Text = Res.Get("Forms,StringCollectionEditor");
- }
- public StringCollectionEditorForm()
- {
- InitializeComponent();
- Localize();
- }
- }
- }
|