- Windows Form потоки
- How to: Make thread-safe calls to Windows Forms controls
- Unsafe cross-thread calls
- Safe cross-thread calls
- Example: Use the Invoke method with a delegate
- Example: Use a BackgroundWorker event handler
- Потоки в Windows Form
- Решение
- Многопоточность в элементах управления Windows Forms Multithreading in Windows Forms Controls
- в этом разделе In This Section
- Справочник Reference
- Связанные разделы Related Sections
- Пошаговое руководство. Осуществление потокобезопасных вызовов элементов управления Windows Forms How to: Make thread-safe calls to Windows Forms controls
- Ненадежные вызовы между потоками Unsafe cross-thread calls
- Надежные вызовы между потоками Safe cross-thread calls
- Пример. использование метода Invoke с делегатом Example: Use the Invoke method with a delegate
- Пример. использование обработчика событий BackgroundWorker Example: Use a BackgroundWorker event handler
Windows Form потоки
Подскажите пожалуйста! Почему не создается второй поток?
Windows Form на VS C++
Есть стремление изучить WinForm на С++, но никакой подходящей конкретной литературы найти не.
Windows Form Application C++
Извиняюсь если задеваю тему которая уже ранее здесь была..но я увы ничего не нашел((:cry.
C++ windows form application
Как удалить созданный PictureBox? Заранее спасибо)
С++ Windows Form Application
У меня есть classname.cpp и classname.h куда правильно подключить класс чтобы с ним можно было.
В программе создать два потока. Назначение одного из них — периодическое чтение системного времени и заполнения глобальной структуры (часы, минуты, секунды), другой — вывод данной структуры на экран.
Тематические курсы и обучение профессиям онлайн Профессия Разработчик на C++ (Skillbox) Архитектор ПО (Skillbox) Профессия Тестировщик (Skillbox) |
Заказываю контрольные, курсовые, дипломные и любые другие студенческие работы здесь или здесь.
Программа в Windows Form
Пишу программу с оконным интерфейсом,но у меня ругается на объект из другого класса,то есть в.
GetCursorPos() в windows form
Использую апишную ф-ию GetCursorPos() на что компилятор говорит 1>—— Построение начато.
Анимация Windows Form
Нужна помощь по заданию и реализации его в Visual Studio. Нужно изобразить действующий конвейер.
Windows Form и .cpp
Пишу в Visual Studio 2010 C++,возникла проблема .Создал я Windows Form и пытаюсь из своего файла.
How to: Make thread-safe calls to Windows Forms controls
Multithreading can improve the performance of Windows Forms apps, but access to Windows Forms controls isn’t inherently thread-safe. Multithreading can expose your code to very serious and complex bugs. Two or more threads manipulating a control can force the control into an inconsistent state and lead to race conditions, deadlocks, and freezes or hangs. If you implement multithreading in your app, be sure to call cross-thread controls in a thread-safe way. For more information, see Managed threading best practices.
There are two ways to safely call a Windows Forms control from a thread that didn’t create that control. You can use the System.Windows.Forms.Control.Invoke method to call a delegate created in the main thread, which in turn calls the control. Or, you can implement a System.ComponentModel.BackgroundWorker, which uses an event-driven model to separate work done in the background thread from reporting on the results.
Unsafe cross-thread calls
It’s unsafe to call a control directly from a thread that didn’t create it. The following code snippet illustrates an unsafe call to the System.Windows.Forms.TextBox control. The Button1_Click event handler creates a new WriteTextUnsafe thread, which sets the main thread’s TextBox.Text property directly.
The Visual Studio debugger detects these unsafe thread calls by raising an InvalidOperationException with the message, Cross-thread operation not valid. Control «» accessed from a thread other than the thread it was created on. The InvalidOperationException always occurs for unsafe cross-thread calls during Visual Studio debugging, and may occur at app runtime. You should fix the issue, but you can disable the exception by setting the Control.CheckForIllegalCrossThreadCalls property to false .
Safe cross-thread calls
The following code examples demonstrate two ways to safely call a Windows Forms control from a thread that didn’t create it:
- The System.Windows.Forms.Control.Invoke method, which calls a delegate from the main thread to call the control.
- A System.ComponentModel.BackgroundWorker component, which offers an event-driven model.
In both examples, the background thread sleeps for one second to simulate work being done in that thread.
You can build and run these examples as .NET Framework apps from the C# or Visual Basic command line. For more information, see Command-line building with csc.exe or Build from the command line (Visual Basic).
Starting with .NET Core 3.0, you can also build and run the examples as Windows .NET Core apps from a folder that has a .NET Core Windows Forms .csproj project file.
Example: Use the Invoke method with a delegate
The following example demonstrates a pattern for ensuring thread-safe calls to a Windows Forms control. It queries the System.Windows.Forms.Control.InvokeRequired property, which compares the control’s creating thread ID to the calling thread ID. If the thread IDs are the same, it calls the control directly. If the thread IDs are different, it calls the Control.Invoke method with a delegate from the main thread, which makes the actual call to the control.
The SafeCallDelegate enables setting the TextBox control’s Text property. The WriteTextSafe method queries InvokeRequired. If InvokeRequired returns true , WriteTextSafe passes the SafeCallDelegate to the Invoke method to make the actual call to the control. If InvokeRequired returns false , WriteTextSafe sets the TextBox.Text directly. The Button1_Click event handler creates the new thread and runs the WriteTextSafe method.
Example: Use a BackgroundWorker event handler
An easy way to implement multithreading is with the System.ComponentModel.BackgroundWorker component, which uses an event-driven model. The background thread runs the BackgroundWorker.DoWork event, which doesn’t interact with the main thread. The main thread runs the BackgroundWorker.ProgressChanged and BackgroundWorker.RunWorkerCompleted event handlers, which can call the main thread’s controls.
To make a thread-safe call by using BackgroundWorker, create a method in the background thread to do the work, and bind it to the DoWork event. Create another method in the main thread to report the results of the background work, and bind it to the ProgressChanged or RunWorkerCompleted event. To start the background thread, call BackgroundWorker.RunWorkerAsync.
The example uses the RunWorkerCompleted event handler to set the TextBox control’s Text property. For an example using the ProgressChanged event, see BackgroundWorker.
Потоки в Windows Form
Всем привет!
Хотелось бы понять почему при запуске кода ниже и нажатии кнопки для вызова события форма блокируется пока не отработает поток t1, т.е. ни закрыть форму, ни кнопку нажать.
Windows Form потоки
Подскажите пожалуйста! Почему не создается второй поток? #include «MyForm.h» using namespace.
Создать win form, используя шаблон windows form в clr, однако такого шаблона на моей студии 2013 нет
есть необходимость создать win form используя шаблон windows form в clr, однако такого шаблона на.
Запуск Windows Form Applications на машине с ранними версиями Windows/.Net
Помогите решить проблему, есть приложение WFA написанное на VB.NET Framework 4.0, это приложение.
Ошибка при создании приложения windows form на Windows 7
На windows 8 без проблем работал, решил поставить 7-ку и возникла ошибка . Читал что проблема.
Еще про GUI «потоки».
В windows приложениях подразумевается что только один поток обрабатывает события GUI. В .NET есть метод Control.Invoke. Многие просто тупо делают
Я ооочень внимательно прочёл и там написано что это не поток
Если серьезно, что значит «тот способ» из темы по ссылке:
«Да, быстрее. Только пока вы тот способ не освоили, это будет что мёртвому припарка.»?
Я так понял у себя я передавал код из потока 1 в основной поток методом invoke, вот он и вис у меня, реализовал с background и c помощью события прогресса обновление контролов, WaitHandle’ами как и хотел, но хотелось бы и знать как это делает invoke и можно ли вообще это сделать только с ним,какие альтернативы background .
Т.е. вторичный поток что то считает, результаты периодически передает в основной поток(маршалинг как я понял), а он выводит их в листбокс например.
В вашем коде не совсем понятно зачем loaders вызывает самого себя?! Да и до этого метода доберётся только как отработает код в t1, смысл?
Добавлено через 5 минут
Ruis, просветите про альтернативы
Тематические курсы и обучение профессиям онлайн Профессия С#-разработчик (Skillbox) Архитектор ПО (Skillbox) Профессия Тестировщик (Skillbox) |
Решение
RomaBayn, смысл вызова себя в том, что если обращаемся к методу из потока, то Invoke required == true, тогда метод вызывает себя через очередь сообщений, из основного потока. В котором уже invoke required == false, и оттуда обращается к контролам напрямую.
Если же вы вызываете этот метод сразу из основного потока, то Invoke required сразу == false и код тут же выполнится.
Это самый древний способ обхода этой проблемы, с первых версий фреймворка.
Позже появились BackgroundWorker, Task, IProgress , async/await.
Заказываю контрольные, курсовые, дипломные и любые другие студенческие работы здесь или здесь.
Windows Form запускается не на всех версиях Windows
Всех приветствую! Случился такой конфуз, сделал лабораторную про программированию, проверил на.
Form.Hide ; Form.Close ; Form.Show
Здравствуйте. Вот интересует один вопрос, в чём различие между Form1.Close; Form2.Show и.
Windows Form
Здравствуйте. Чем дальше в лес, тем толще партизаны. 1.Как сделать так, чтобы моя форма(решая.
Windows Form
скажите пожалуйста. Я создал класс вопросов содержащий массив вопросов в Windows Form. Как теперь.
Многопоточность в элементах управления Windows Forms Multithreading in Windows Forms Controls
Во многих приложениях можно сделать пользовательский интерфейс более быстрым, выполняя длительные операции в другом потоке. In many applications, you can make your user interface (UI) more responsive by performing time-consuming operations on another thread. Существует ряд средств для многопоточности элементов управления Windows Forms, включая System.Threading пространство имен, Control.BeginInvoke метод и BackgroundWorker компонент. A number of tools are available for multithreading your Windows Forms controls, including the System.Threading namespace, the Control.BeginInvoke method, and the BackgroundWorker component.
BackgroundWorker Компонент заменяет и добавляет функции к System.Threading пространству имен и Control.BeginInvoke методу. Однако они сохраняются для обратной совместимости и использования в будущем, если вы решили. The BackgroundWorker component replaces and adds functionality to the System.Threading namespace and the Control.BeginInvoke method; however, these are retained for both backward compatibility and future use, if you choose. Дополнительные сведения см. в разделе Общие сведения о компоненте BackgroundWorker. For more information, see BackgroundWorker Component Overview.
в этом разделе In This Section
Практическое руководство. Осуществление потокобезопасных вызовов элементов управления Windows Forms How to: Make Thread-Safe Calls to Windows Forms Controls
Показывает, как выполнять потокобезопасные вызовы элементов управления Windows Forms. Shows how to make thread-safe calls to Windows Forms controls.
Практическое руководство. Применение фонового потока для поиска файлов How to: Use a Background Thread to Search for Files
Показывает, как использовать System.Threading пространство имен и BeginInvoke метод для асинхронного поиска файлов. Shows how to use the System.Threading namespace and the BeginInvoke method to search for files asynchronously.
Справочник Reference
BackgroundWorker
Документирует компонент, инкапсулирующий рабочий поток для асинхронных операций. Documents a component that encapsulates a worker thread for asynchronous operations.
LoadAsync
Документация по асинхронной загрузке звука. Documents how to load a sound asynchronously.
LoadAsync
Документация по асинхронной загрузке изображения. Documents how to load an image asynchronously.
Связанные разделы Related Sections
Практическое руководство. Фоновое выполнение операции How to: Run an Operation in the Background
Показывает, как выполнить трудоемкую операцию с BackgroundWorker компонентом. Shows how to perform a time-consuming operation with the BackgroundWorker component.
Общие сведения о компоненте BackgroundWorker BackgroundWorker Component Overview
Содержит разделы, в которых описывается использование BackgroundWorker компонента для асинхронных операций. Provides topics that describe how to use the BackgroundWorker component for asynchronous operations.
Пошаговое руководство. Осуществление потокобезопасных вызовов элементов управления Windows Forms How to: Make thread-safe calls to Windows Forms controls
Многопоточность может повысить производительность Windows Forms приложений, но доступ к элементам управления Windows Forms не является потокобезопасным. Multithreading can improve the performance of Windows Forms apps, but access to Windows Forms controls isn’t inherently thread-safe. Многопоточность может представлять код для очень серьезных и сложных ошибок. Multithreading can expose your code to very serious and complex bugs. Два или более потока, управляющих элементом управления, могут привести к нестабильному состоянию и вызвать условия гонки, взаимоблокировки, зависания или фиксации. Two or more threads manipulating a control can force the control into an inconsistent state and lead to race conditions, deadlocks, and freezes or hangs. При реализации многопоточности в приложении следует обязательно вызывать элементы управления между потоками потокобезопасным образом. If you implement multithreading in your app, be sure to call cross-thread controls in a thread-safe way. Дополнительные сведения см. в разделе рекомендации по управляемому потоку. For more information, see Managed threading best practices.
Существует два способа безопасного вызова элемента управления Windows Forms из потока, который не был создан этим элементом управления. There are two ways to safely call a Windows Forms control from a thread that didn’t create that control. Метод можно использовать System.Windows.Forms.Control.Invoke для вызова делегата, созданного в основном потоке, который, в свою очередь, вызывает элемент управления. You can use the System.Windows.Forms.Control.Invoke method to call a delegate created in the main thread, which in turn calls the control. Или можно реализовать System.ComponentModel.BackgroundWorker , который использует модель, управляемую событиями, для разделения работы, выполненной в фоновом потоке, от создания отчетов о результатах. Or, you can implement a System.ComponentModel.BackgroundWorker, which uses an event-driven model to separate work done in the background thread from reporting on the results.
Ненадежные вызовы между потоками Unsafe cross-thread calls
Вызвать элемент управления напрямую из потока, который не создал его, неважно. It’s unsafe to call a control directly from a thread that didn’t create it. В следующем фрагменте кода показан незащищенный вызов System.Windows.Forms.TextBox элемента управления. The following code snippet illustrates an unsafe call to the System.Windows.Forms.TextBox control. Button1_Click Обработчик событий создает новый WriteTextUnsafe поток, который устанавливает свойство основного потока TextBox.Text напрямую. The Button1_Click event handler creates a new WriteTextUnsafe thread, which sets the main thread’s TextBox.Text property directly.
Отладчик Visual Studio обнаруживает эти ненадежные вызовы потоков путем вызова исключения InvalidOperationException с сообщением, недопустимой операцией между потоками. Доступ к элементу управления «» осуществляется из потока, отличного от потока, в котором он был создан. The Visual Studio debugger detects these unsafe thread calls by raising an InvalidOperationException with the message, Cross-thread operation not valid. Control «» accessed from a thread other than the thread it was created on. InvalidOperationExceptionВсегда происходит для ненадежных межпотоковых вызовов во время отладки Visual Studio и может возникнуть во время выполнения приложения. The InvalidOperationException always occurs for unsafe cross-thread calls during Visual Studio debugging, and may occur at app runtime. Проблему следует устранить, но можно отключить исключение, задав Control.CheckForIllegalCrossThreadCalls для свойства значение false . You should fix the issue, but you can disable the exception by setting the Control.CheckForIllegalCrossThreadCalls property to false .
Надежные вызовы между потоками Safe cross-thread calls
В следующих примерах кода демонстрируются два способа безопасного вызова элемента управления Windows Forms из потока, который не создал его. The following code examples demonstrate two ways to safely call a Windows Forms control from a thread that didn’t create it:
- System.Windows.Forms.Control.InvokeМетод, который вызывает делегат из основного потока для вызова элемента управления. The System.Windows.Forms.Control.Invoke method, which calls a delegate from the main thread to call the control.
- System.ComponentModel.BackgroundWorkerКомпонент, который предоставляет модель, управляемую событиями. A System.ComponentModel.BackgroundWorker component, which offers an event-driven model.
В обоих примерах фоновый поток заждет одну секунду для имитации работы, выполняемой в этом потоке. In both examples, the background thread sleeps for one second to simulate work being done in that thread.
Вы можете собрать и запустить эти примеры как .NET Framework приложения из командной строки C# или Visual Basic. You can build and run these examples as .NET Framework apps from the C# or Visual Basic command line. Дополнительные сведения см. в разделе Построение из командной строки с помощью csc.exe или Сборка из командной строки (Visual Basic). For more information, see Command-line building with csc.exe or Build from the command line (Visual Basic).
Начиная с .NET Core 3,0, можно также создавать и запускать примеры как приложения Windows .NET Core из папки с файлом проекта .NET Core Windows Forms . csproj . Starting with .NET Core 3.0, you can also build and run the examples as Windows .NET Core apps from a folder that has a .NET Core Windows Forms .csproj project file.
Пример. использование метода Invoke с делегатом Example: Use the Invoke method with a delegate
В следующем примере показан шаблон для обеспечения потокобезопасных вызовов элемента управления Windows Forms. The following example demonstrates a pattern for ensuring thread-safe calls to a Windows Forms control. Он запрашивает System.Windows.Forms.Control.InvokeRequired свойство, которое СРАВНИВАЕТ идентификатор потока создаваемого элемента управления с идентификатором вызывающего потока. It queries the System.Windows.Forms.Control.InvokeRequired property, which compares the control’s creating thread ID to the calling thread ID. Если идентификаторы потоков совпадают, он вызывает элемент управления напрямую. If the thread IDs are the same, it calls the control directly. Если идентификаторы потоков отличаются, он вызывает Control.Invoke метод с делегатом из основного потока, который выполняет фактический вызов элемента управления. If the thread IDs are different, it calls the Control.Invoke method with a delegate from the main thread, which makes the actual call to the control.
SafeCallDelegate Позволяет задать TextBox свойство элемента управления Text . The SafeCallDelegate enables setting the TextBox control’s Text property. WriteTextSafe Метод запрашивает InvokeRequired . The WriteTextSafe method queries InvokeRequired. Если InvokeRequired возвращает true , WriteTextSafe передает в SafeCallDelegate метод, Invoke чтобы выполнить фактический вызов элемента управления. If InvokeRequired returns true , WriteTextSafe passes the SafeCallDelegate to the Invoke method to make the actual call to the control. Если InvokeRequired возвращает false , WriteTextSafe задает TextBox.Text непосредственно. If InvokeRequired returns false , WriteTextSafe sets the TextBox.Text directly. Button1_Click Обработчик событий создает новый поток и выполняет WriteTextSafe метод. The Button1_Click event handler creates the new thread and runs the WriteTextSafe method.
Пример. использование обработчика событий BackgroundWorker Example: Use a BackgroundWorker event handler
Простой способ реализации многопоточности заключается в использовании System.ComponentModel.BackgroundWorker компонента, использующего модель, управляемую событиями. An easy way to implement multithreading is with the System.ComponentModel.BackgroundWorker component, which uses an event-driven model. Фоновый поток запускает BackgroundWorker.DoWork событие, которое не взаимодействует с основным потоком. The background thread runs the BackgroundWorker.DoWork event, which doesn’t interact with the main thread. Главный поток запускает BackgroundWorker.ProgressChanged BackgroundWorker.RunWorkerCompleted обработчики событий и, которые могут вызывать элементы управления основного потока. The main thread runs the BackgroundWorker.ProgressChanged and BackgroundWorker.RunWorkerCompleted event handlers, which can call the main thread’s controls.
Чтобы сделать потокобезопасный вызов с помощью BackgroundWorker , создайте метод в фоновом потоке, чтобы выполнить работу, и привяжите его к DoWork событию. To make a thread-safe call by using BackgroundWorker, create a method in the background thread to do the work, and bind it to the DoWork event. Создайте другой метод в основном потоке, чтобы сообщить результаты фоновой работы и привязать его к ProgressChanged RunWorkerCompleted событию или. Create another method in the main thread to report the results of the background work, and bind it to the ProgressChanged or RunWorkerCompleted event. Чтобы запустить фоновый поток, вызовите BackgroundWorker.RunWorkerAsync . To start the background thread, call BackgroundWorker.RunWorkerAsync.
В примере с помощью RunWorkerCompleted обработчика событий задается TextBox свойство элемента управления Text . The example uses the RunWorkerCompleted event handler to set the TextBox control’s Text property. Пример использования ProgressChanged события см. в разделе BackgroundWorker . For an example using the ProgressChanged event, see BackgroundWorker.