private void buttonCustomize_Click(object sender, EventArgs e) { using (new WaitCursor()) { using (EditImageSizesDialog dialog = new EditImageSizesDialog()) { if (dialog.ShowDialog(this) == DialogResult.OK) { imageSizePickerControl1.Resynchronize(new GetScaledImageSizeDelegate(GetScaledImageSize)); } } } }
private void customSizeDefaultsCommand_Execute(object sender, EventArgs e) { using (new WaitCursor()) using (EditImageSizesDialog dialog = new EditImageSizesDialog()) { ImageSizeName imageSizeName = ImagePropertiesInfo.InlineImageSizeName; if (dialog.ShowDialog(_editorContext.MainFrameWindow) == DialogResult.OK) { // If the current ImageSizeName's settings changed, we should resize the image. ImagePropertiesInfo.InlineImageSizeName = imageSizeName; ApplyImageDecorations(ImagePropertyType.InlineSize, ImageDecoratorInvocationSource.Command); } } }