File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
docs/snippets/cpp/VS_Snippets_Winforms
DataGrid_ColorMembers/CPP
System.ComponentModel.BackgroundWorker/CPP Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -452,7 +452,7 @@ namespace DataGridSample
452452 {
453453 // <Snippet2>
454454 // String variable used to show message.
455- String^ myString = " Selection backgound color changed from: " ;
455+ String^ myString = " Selection background color changed from: " ;
456456
457457 // Store current foreground color of selected cells.
458458 Color myCurrentColor = myDataGrid->SelectionBackColor ;
@@ -579,7 +579,7 @@ namespace DataGridSample
579579 {
580580 // <Snippet7>
581581 // String variable used to show message.
582- String^ myString = " Backgound color changed from: " ;
582+ String^ myString = " Background color changed from: " ;
583583
584584 // Store current foreground color of selected cells.
585585 Color myCurrentColor = myDataGrid->BackColor ;
Original file line number Diff line number Diff line change @@ -35,15 +35,15 @@ public ref class FibonacciForm: public System::Windows::Forms::Form
3535 {
3636 InitializeComponent ();
3737 numberToCompute = highestPercentageReached = 0 ;
38- InitializeBackgoundWorker ();
38+ InitializeBackgroundWorker ();
3939 }
4040
4141
4242private:
4343
4444 // Set up the BackgroundWorker object by
4545 // attaching event handlers.
46- void InitializeBackgoundWorker ()
46+ void InitializeBackgroundWorker ()
4747 {
4848 backgroundWorker1->DoWork += gcnew DoWorkEventHandler ( this , &FibonacciForm::backgroundWorker1_DoWork );
4949 backgroundWorker1->RunWorkerCompleted += gcnew RunWorkerCompletedEventHandler ( this , &FibonacciForm::backgroundWorker1_RunWorkerCompleted );
You can’t perform that action at this time.
0 commit comments