BruceLee
2019-09-24 a9f88790c31c8b61d9b90241c4df258a980f1c00
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
using System;
namespace Shared.Phone.Device.CommonForm
{
    public class CommonFormRrsouce
    {
        /// <summary>
        ///  高度 220
        /// </summary>
        public static readonly int TopFrameLayout_Height=220;
        /// <summary>
        /// topview 状态栏高度 80
        /// </summary>
        public static readonly int TopStatuFrameLayout_Height = 80;
        /// <summary>
        /// topview 状态栏高度 140
        /// </summary>
        public static readonly int Topview_Height = 140;
 
        /// <summary>
        /// 标题大小 20
        /// </summary>
        public static readonly int TopTitle_TextSize = 20;
        /// <summary>
        /// 标题宽度 1080 - 500
        /// </summary>
        public static readonly int TopTitle_Width = 1080 - 500;
    }
}