Exemplo n.º 1
0
        private void btnProfile_Click(object sender, System.EventArgs e)
        {
            SaveProfileForm spf = new SaveProfileForm();

            spf.ImgHei     = scrollHei.Value;
            spf.ImgWid     = scrollWid.Value;
            spf.ImgType    = ((BmpForm.cbItem)cbTypes.SelectedItem).itm;
            spf.FileString = file;

            if (spf.ShowDialog(this) == DialogResult.OK)
            {
                Close();
            }
        }
Exemplo n.º 2
0
		private void btnProfile_Click(object sender, System.EventArgs e)
		{
			SaveProfileForm spf = new SaveProfileForm();
			spf.ImgHei=scrollHei.Value;
			spf.ImgWid=scrollWid.Value;
			spf.ImgType=((BmpForm.cbItem)cbTypes.SelectedItem).itm;
			spf.FileString = file;

			if (spf.ShowDialog(this) == DialogResult.OK)
				Close();
		}