本文整理匯總了C#中iSpyApplication.Controls.CameraWindow.ApplySchedule方法的典型用法代碼示例。如果您正苦於以下問題:C# CameraWindow.ApplySchedule方法的具體用法?C# CameraWindow.ApplySchedule怎麽用?C# CameraWindow.ApplySchedule使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類iSpyApplication.Controls.CameraWindow
的用法示例。
在下文中一共展示了CameraWindow.ApplySchedule方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: DisplayCamera
internal void DisplayCamera(objectsCamera cam)
{
var cameraControl = new CameraWindow(cam);
SetCameraEvents(cameraControl);
cameraControl.BackColor = Conf.BackColor.ToColor();
_pnlCameras.Controls.Add(cameraControl);
cameraControl.Location = new Point(cam.x, cam.y);
cameraControl.Size = new Size(cam.width, cam.height);
cameraControl.BringToFront();
cameraControl.Tag = GetControlIndex();
if (Conf.AutoSchedule && cam.schedule.active && cam.schedule.entries.Any())
{
cam.settings.active = false;
cameraControl.ApplySchedule();
}
else
{
try
{
if (cam.settings.active)
cameraControl.Enable();
}
catch (Exception ex)
{
Log.Error("", ex);
}
}
string path = Conf.MediaDirectory + "video\\" + cam.directory + "\\";
if (!Directory.Exists(path))
Directory.CreateDirectory(path);
path = Conf.MediaDirectory + "video\\" + cam.directory + "\\thumbs\\";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
//move existing thumbs into directory
var lfi =
Directory.GetFiles(Conf.MediaDirectory + "video\\" + cam.directory + "\\", "*.jpg").ToList();
foreach (string file in lfi)
{
string destfile = file;
int i = destfile.LastIndexOf(@"\", StringComparison.Ordinal);
destfile = file.Substring(0, i) + @"\thumbs" + file.Substring(i);
File.Move(file, destfile);
}
}
path = Conf.MediaDirectory + "video\\" + cam.directory + "\\grabs\\";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
}