forked from ChineduOpara/KCS.Common.Shared
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
49 lines (43 loc) · 1.22 KB
/
Constants.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace KCS.Common.Shared
{
/// <summary>
/// Project constants.
/// </summary>
public class Constants
{
/// <summary>
/// Form-specific property names.
/// </summary>
public class FormProperties
{
/// <summary>
/// Top property name.
/// </summary>
public const string Top = "Top";
/// <summary>
/// Left property name.
/// </summary>
public const string Left = "Left";
/// <summary>
/// Width property name.
/// </summary>
public const string Width = "Width";
/// <summary>
/// Height property name.
/// </summary>
public const string Height = "Height";
}
//public const string RowErrorMessage = "There are error(s) in this Product. See red-lined cells for details.";
public const string RowErrorMessage = "There are error(s) in this {0}. See highlited cells for details.";
public const string ErrorMessageDelimiter = " | ";
/// <summary>
/// To Capture Ctrl F
/// </summary>
public const int WM_KEYDOWN = 0x100;
public const int WM_SYSKEYDOWN = 0x104;
}
}