Add project files.
This commit is contained in:
25
PictureHandling/LocalPicture.cs
Normal file
25
PictureHandling/LocalPicture.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PictureHandling
|
||||
{
|
||||
public class LocalPicture
|
||||
{
|
||||
public string PictureFileName { get; set; }
|
||||
public string InitialPath { get; set; }
|
||||
public string PictureFullPath {
|
||||
get {
|
||||
return Path.Combine(InitialPath, PictureFileName);
|
||||
}
|
||||
}
|
||||
public Image AktImage { get; set; }
|
||||
public int AktImWidth { get; set; }
|
||||
public int AktImHeight { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user