or
private void timerProgressbar_Tick(object sender, EventArgs e) |
{ |
radProgressBarTimerTicks++; |
if (radProgressBarTimerTicks >= 100) |
{ |
radProgressBarTimerTicks = 0; |
} |
radProgressBar1.Value1 = radProgressBarTimerTicks; |
radStatusStrip1.Refresh(); |
radProgressBar1.Refresh(); |
} |
cbHorizontalFlip.ToggleStateChanged -= HorizVert_ToggleStateChanged
el error se produce porque exige enviarle parámetros al método HorizVert_ToggleStateChanged
Este método está en el tutorial de RadForms
Gracias.
Requirements |
|
RadControls version |
2010.1.10.409 |
.NET version |
4.0 |
Visual Studio version |
2010 |
programming language |
C# |
browser support |
all browsers supported by RadControls |
private void rgLocations_CellBeginEdit(object sender, GridViewCellCancelEventArgs e) |
{ |
if (((GridViewDataColumn)this.rgLocations.CurrentColumn).UniqueName == "Zip Code" && |
this.rgLocations.CurrentRow.Cells["Zip Code"].Value != DBNull.Value) |
{ |
e.Cancel = true; |
RadMessageBox.SetThemeName(this.ThemeName); |
RadMessageBox.Show("You cannot edit zip codes of an existing Location"); |
} |
} |