コード例 #1
0
        public async override void ViewDidLoad()
        {
            base.ViewDidLoad();
            webView.Delegate = new LegalWebViewDelegate(this);

            BackButton.SetImage(new UIImage("Images/Navigation/RedBackArrow.png"), UIControlState.Normal);
            ForButton.SetImage(new UIImage("Images/Navigation/GrayForwardArrow.png"), UIControlState.Normal);

            BackButton.Enabled = false;
            ForButton.Enabled  = false;

            SelectTitleLabel.Text = selectText;
            Record(SelectTitleLabel.Text);

            currentBookId = AppDataUtil.Instance.GetCurrentPublication().BookId;

            SearchDictionary(SelectTitleLabel.Text, currentBookId);
        }