-
Notifications
You must be signed in to change notification settings - Fork 3
/
Program.cs
34 lines (32 loc) · 963 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Developer Express Code Central Example:
// How to avoid the ArgumentOutOfRangeException exception when updating the Grid's data source within a background thread
//
// This example shows how to properly update the Grid's underlying data source from
// a background thread, and avoid possible synchronization problems.
//
//
// See
// Also:
// <kblink id = "AK2981"/>
//
// You can find sample updates and versions for different programming languages here:
// http://www.devexpress.com/example=E813
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace Thread
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}