-
Notifications
You must be signed in to change notification settings - Fork 1
/
Clipboard.cs
35 lines (33 loc) · 1.29 KB
/
Clipboard.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// This is an open source non-commercial project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace SCADA
{
[Serializable]
public class ClipboardManipulation
{
public ClipboardManipulation(int code)
{
Manipulation = code;
}
// Код операции: 1 = копирование объекта, 2 = вырезание объекта, 3 = копирование объектов в canvasControlPanel, 4 = вырезание объектов в canvasControlPanel
private int manipulation;
public int Manipulation
{
get { return manipulation; }
set
{
manipulation = value;
if(value > 4 && value < 1)
{
MessageBox.Show("Ошибка буфера обмена, аргумент класса ClipboardManipulation вышел из диапозона допустимых чисел 1-4", "Ошибка буфера обмена", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
}
}
}