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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Shared.Phone.UserCenter.Suggestion
{
    /// <summary>
    /// 意见反馈的界面
    /// </summary>
    public class FeedbackForm : EditorCommonForm
    {
        #region ■ 变量声明___________________________
 
        #endregion
 
        #region ■ 初始化_____________________________
 
        /// <summary>
        /// 画面显示(底层会固定调用此方法,借以完成画面创建)
        /// </summary>
        public void ShowForm()
        {
            //设置头部信息
            base.SetTitleText(Language.StringByID(R.MyInternationalizationString.Suggestions));
 
            //初始化中部信息
            this.InitMiddleFrame();
        }
 
        /// <summary>
        /// 初始化中部信息
        /// </summary>
        private void InitMiddleFrame()
        {
            //清空bodyFrame
            this.ClearBodyFrame();
 
            var frameInput = new FrameLayout();
            frameInput.Height = Application.GetRealHeight(576);
            frameInput.BackgroundColor = UserCenterColor.Current.White;
            bodyFrameLayout.AddChidren(frameInput);
 
            var txtInput = new TextInputControl(bodyFrameLayout.Width - ControlCommonResourse.XXLeft * 2, Application.GetRealHeight(473), false);
            //txtInput.PlaceholderTextColor=UserCenterColor.Current
 
        }
 
        #endregion
 
        #region ■ 一般方法___________________________
 
        #endregion
    }
}