- Auto Complete String Collection Class
- Definition
- Constructors
- Properties
- Methods
- Events
- Explicit Interface Implementations
- Extension Methods
- Auto Complete String Collection Класс
- Определение
- Конструкторы
- Свойства
- Методы
- События
- Явные реализации интерфейса
- Методы расширения
- How do you add a string to a Windows Form Label?
- 2 Answers 2
- Ответы на 7 самых частых вопросов по WinForms
Auto Complete String Collection Class
Definition
Contains a collection of strings to use for the auto-complete feature on certain Windows Forms controls.
Constructors
Initializes a new instance of the AutoCompleteStringCollection class.
Properties
Gets the number of items in the AutoCompleteStringCollection .
Gets a value indicating whether the contents of the collection are read-only.
Gets a value indicating whether access to the AutoCompleteStringCollection is synchronized (thread safe).
Gets or sets the element at the specified index.
Gets an object that can be used to synchronize access to the AutoCompleteStringCollection.
Methods
Inserts a new String into the collection.
Adds the elements of a String collection to the end.
Removes all strings from the collection.
Indicates whether the String exists within the collection.
Copies an array of String objects into the collection, starting at the specified position.
Determines whether the specified object is equal to the current object.
(Inherited from Object)
Returns an enumerator that iterates through the AutoCompleteStringCollection.
Serves as the default hash function.
(Inherited from Object)
Gets the Type of the current instance.
(Inherited from Object)
Obtains the position of the specified string within the collection.
Inserts the string into a specific index in the collection.
Creates a shallow copy of the current Object.
(Inherited from Object)
Removes a string from the collection.
Removes the string at the specified index.
Returns a string that represents the current object.
(Inherited from Object)
Events
Occurs when the collection changes.
Explicit Interface Implementations
Copies the strings of the collection to an Array, starting at a particular Array index. For a description of this member, see CopyTo(Array, Int32).
Adds a string to the collection. For a description of this member, see Add(Object).
Determines where the collection contains a specified string. For a description of this member, see Contains(Object).
Determines the index of a specified string in the collection. For a description of this member, see IndexOf(Object).
Inserts an item to the collection at the specified index. For a description of this member, see Insert(Int32, Object).
Gets a value indicating whether the collection has a fixed size. For a description of this member, see IsFixedSize.
Gets a value indicating whether the collection is read-only. For a description of this member, see IsReadOnly.
Gets the element at a specified index. For a description of this member, see Item[Int32].
Removes the first occurrence of a specific string from the collection. For a description of this member, see Remove(Object).
Extension Methods
Casts the elements of an IEnumerable to the specified type.
Filters the elements of an IEnumerable based on a specified type.
Auto Complete String Collection Класс
Определение
Содержит коллекцию строк, которую следует использовать для функции автозаполнения в некоторых элементах управления Windows Forms. Contains a collection of strings to use for the auto-complete feature on certain Windows Forms controls.
Конструкторы
Инициализирует новый экземпляр класса AutoCompleteStringCollection. Initializes a new instance of the AutoCompleteStringCollection class.
Свойства
Получает число элементов в объекте AutoCompleteStringCollection. Gets the number of items in the AutoCompleteStringCollection .
Получает значение, указывающее, является ли содержимое коллекции доступным только для чтения. Gets a value indicating whether the contents of the collection are read-only.
Возвращает значение, показывающее, является ли доступ к коллекции AutoCompleteStringCollection синхронизированным (потокобезопасным). Gets a value indicating whether access to the AutoCompleteStringCollection is synchronized (thread safe).
Возвращает или задает элемент по указанному индексу. Gets or sets the element at the specified index.
Получает объект, с помощью которого можно синхронизировать доступ к коллекции AutoCompleteStringCollection. Gets an object that can be used to synchronize access to the AutoCompleteStringCollection.
Методы
Вставляет новый объект String в коллекцию. Inserts a new String into the collection.
Добавляет элементы коллекции String в конец. Adds the elements of a String collection to the end.
Удаляет из коллекции все строки. Removes all strings from the collection.
Указывает, содержится ли в коллекции объект String. Indicates whether the String exists within the collection.
Копирует массив объектов String в коллекцию, начиная с указанной позиции. Copies an array of String objects into the collection, starting at the specified position.
Определяет, равен ли указанный объект текущему объекту. Determines whether the specified object is equal to the current object.
(Унаследовано от Object)
Возвращает перечислитель, осуществляющий перебор элементов списка AutoCompleteStringCollection. Returns an enumerator that iterates through the AutoCompleteStringCollection.
Служит хэш-функцией по умолчанию. Serves as the default hash function.
(Унаследовано от Object)
Возвращает объект Type для текущего экземпляра. Gets the Type of the current instance.
(Унаследовано от Object)
Получает позицию указанной строки в коллекции. Obtains the position of the specified string within the collection.
Вставляет строку в определенную позицию в коллекции. Inserts the string into a specific index in the collection.
Создает неполную копию текущего объекта Object. Creates a shallow copy of the current Object.
(Унаследовано от Object)
Удаляет из коллекции строку. Removes a string from the collection.
Удаляет строку по указанному индексу. Removes the string at the specified index.
Возвращает строку, представляющую текущий объект. Returns a string that represents the current object.
(Унаследовано от Object)
События
Происходит при изменении коллекции. Occurs when the collection changes.
Явные реализации интерфейса
Копирует строки коллекции в Array, начиная с определенного индекса Array. Copies the strings of the collection to an Array, starting at a particular Array index. Описание этого члена см. в разделе CopyTo(Array, Int32). For a description of this member, see CopyTo(Array, Int32).
Добавляет строку в коллекцию. Adds a string to the collection. Описание этого члена см. в разделе Add(Object). For a description of this member, see Add(Object).
Определяет, где в коллекции содержится указанная строка. Determines where the collection contains a specified string. Описание этого члена см. в разделе Contains(Object). For a description of this member, see Contains(Object).
Определяет индекс указанной строки в коллекции. Determines the index of a specified string in the collection. Описание этого члена см. в разделе IndexOf(Object). For a description of this member, see IndexOf(Object).
Вставляет в коллекцию элемент по указанному индексу. Inserts an item to the collection at the specified index. Описание этого члена см. в разделе Insert(Int32, Object). For a description of this member, see Insert(Int32, Object).
Возвращает значение, указывающее, имеет ли коллекция фиксированный размер. Gets a value indicating whether the collection has a fixed size. Описание этого члена см. в разделе IsFixedSize. For a description of this member, see IsFixedSize.
Возвращает значение, указывающее, является ли коллекция доступной только для чтения. Gets a value indicating whether the collection is read-only. Описание этого члена см. в разделе IsReadOnly. For a description of this member, see IsReadOnly.
Получает элемент по указанному индексу. Gets the element at a specified index. Описание этого члена см. в разделе Item[Int32]. For a description of this member, see Item[Int32].
Удаляет первое вхождение конкретной строки из коллекции. Removes the first occurrence of a specific string from the collection. Описание этого члена см. в разделе Remove(Object). For a description of this member, see Remove(Object).
Методы расширения
Приводит элементы объекта IEnumerable к заданному типу. Casts the elements of an IEnumerable to the specified type.
Выполняет фильтрацию элементов объекта IEnumerable по заданному типу. Filters the elements of an IEnumerable based on a specified type.
Позволяет осуществлять параллельный запрос. Enables parallelization of a query.
Преобразовывает коллекцию IEnumerable в объект IQueryable. Converts an IEnumerable to an IQueryable.
How do you add a string to a Windows Form Label?
I tried doing it like this:
Where GetSomething() is a function that returns a string.
And the compiler gave me an error:
«error C2679: binary ‘+’ : no operator found which takes a right-hand operand of type ‘std::string’ (or there is no acceptable conversion)»
2 Answers 2
The problem is that you have at least two different string classes in play here.
WinForms (which you’re apparently using for your GUI) uses the .NET System::String class everywhere. So the Label.Text property is getting/setting a .NET System::String object.
You say in the question that the GetSomething() method returns a std::string object. The std::string class is basically C++’s built-in string type, provided as part of the standard library.
Both classes are fine and serve their respective purposes well, but they’re not directly compatible. That’s what the (second attempt’s) compiler message is trying to tell you:
error C2664: void System::Windows::Forms::Control::Text::set(System::String ^) : cannot convert parameter 1 from std::basic_string to System::String ^
Rewritten in plain English:
error C2664: cannot convert the native std::string object passed as parameter 1 to a managed System::String object, required for the Control::Text property
The truth is, you really shouldn’t mix the two string types. Since WinForms essentially forces its string type on you, that’s the one I would standardize on, at least for any code that interacts with the GUI. So if possible, rewrite the GetSomething() method to return a System::String object; for example:
Ответы на 7 самых частых вопросов по WinForms
Ответы на 7 самых частых вопроса по WinForms
1. Как создать вторую форму
Любая форма представляет из себя класс, унаследованный от Form.
Экземпляр главной формы создается в файле Program.cs по умолчанию.
При этом ShowDialog() блокирует главную форму, т.е. управление вернется в нее, только по закрытию второй формы, а Show() просто отображает вторую форму, т.е. будут доступны обе формы.
2. Как передать данные из одной формы в другую
Часто возникает необходимость передать данные из одной формы в другую, я придумал 7 способов, у каждого свои недостатки и достоинства.
2.1 Изменение модификатора доступа (добавлено 24 июля 2017: лучше воздержаться от применения данного способа)
В Form2 Установить модификатор доступа для контрола/поля public
В любом месте Form1
+ Самый быстрый в реализации и удобный способ
— Противоречит всем основам ООП
— Возможна передача только из более поздней формы в более раннюю
— Форма f показывается только с использованием ShowDialog(), т.е. в первую форму управление вернется только по закрытию второй. Избежать этого можно, сохранив ссылку на вторую форму в поле первой формы
2.2 Использование открытого свойства/метода. Способ очень похож на первый
В классе Form2 определяем свойство (или метод)
+ Противоречит не всем основам ООП
— Минусы те же
2.3 Передача данных в конструктор Form2
Изменяем конструктор Form2
+ Простой в реализации способ
+ Не нарушает ООП
— Возможна передача только из более ранней формы в более позднюю
2.4 Передача ссылки в конструктор
Изменяем конструктор Form2
+ Доступ ко всем открытым полям/функциям первой формы
+ Передача данных возможна в обе стороны
— Нарушает ООП
2.5 Используем свойство ‘родитель’
При создании второй формы устанавливаем владельца
+ Доступ ко всем открытым полям/функциям первой формы
+ Передача данных возможна в обе стороны
+ Не нарушает ООП
2.6 Используем отдельный класс
Создаем отдельный класс, лучше статический, в основном namespace, т.е. например в файле Program.cs
+ Самый удобный способ, когда данные активно используются несколькими формами.
2.7 Использование функций обратного вызова
2.7.1 Передача метода в конструктор
Создаем в основном namespace делегат
Непонятен пункт 2.5 из «Ответы на 7 самых частых вопросов по WinForms»
Вопрос по пункту 2.5 из «Ответы на 7 самых частых вопроса по WinForms». Вот код: // в форме 1.
Ответы на 7 самых частых вопросов по Windows Forms, C++/CLI Edition
Ответы на 7 самых частых вопросов по Windows Forms C++/CLI Edition Эта статья является.
Ответы на 7 самых частых вопросов по Windows Forms, C++/CLI Edition — свой способ передачи данных между формами
Способ с использованием макросов. Средней сложности в реализации и понимании, не знаю, нарушает ли.
Список Ваших вопросов Платону Щукину и его ответы
Данная тема будет предназначана для публикования Ваших вопросов и ответов с службой поддержки.
+ Наиболее гибкий способ передачи данных
— Сложен в реализации и понимании
3. Как получить доступ к контролу из другого потока
С элементами управления можно работать только из того потока в котором они были созданы. При обращении из другого потока будет сгенерировано исключение InvalidOperationException с текстом «Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on.» (Недопустимая операция в нескольких потоках: попытка доступа к элементу управления не из того потока, в котором он был создан.). Возможные решения:
3.1 Простой и неправильный способ
Отменяем проверку, из какого потока используется контрол
Для одного раза может и сработать, но делать так крайне не рекомендуется.
3.2 Использование методов Invoke/BeginInvoke
Эти методы выполняют указанные делегаты в том потоке, в котором контрол был создан.
Invoke вызывает делегат синхронно, BeginInvoke — асинхронно.
Чтобы определить, требуется ли Invoke используйте свойство InvokeRequired.
Например, объявляем делегат
Позволю себе дополнить вопрос по связи и передаче данных двух форм, формы и класса. Подобные темы возникают очень часто, но в данном FAQ нет главного примера — использование событий, которые, как я считаю, являются самым верным способом для передачи к-либо данных.
Итак, вот участки кода. Для лучшего понимания прикрепляю архив с проектом. Имеем:
1.Главная форма, с двумя датагридами и двумя кнопками.
2.Дополнительная форма с тремя текстовыми полями и одной кнопкой.
3.Отдельный класс.
Логика работы: по нажатию на кнопку получения данных из доп.формы, открывается окно второй формы. Заполняем текстовые поля, и по нажатию кнопки форма закрывается, а данные из полей оказываются в гриде 1. По нажатию кнопки получения данных из класса создается объект класса, в конструкторе класса формируется таблица, которая при вызове метода класса передает данные в осн. форму, где они отображаются в гриде 2.
Также уточню, что передачу таблиц я выбрал для наглядности, и передавать таким способом можно все что угодно, используя приведенный шаблон
PS.В моем коде специально не использовались анонимные делегаты и лямбда, для облегчения восприятия новичками.