
نوشته شده توسط
mr.sirwan
شما لطفا کدهاتون رو بذارید اینجوری که نمیشه کمکی کرد
try
{
if (!string.IsNullOrWhiteSpace(_path))
{
Image im = Image.FromFile(_path);
if (im.Width > im.Height)
{
this.Width = 710;
this.Height = 560;
}
else
{
this.Width = 510;
this.Height = 630;
}
im.Dispose();
pbox.Load(_path);
}
}
catch (Exception)
{
}