private void OnViewCommand()
        {
            //MessageBox.Show(FileUrl + ".xod");
            ReviewWindow review = new ReviewWindow(FileUrl + ".xod");

            review.Show();
        }
        private void onView()
        {
            if (fileUrl == null)
            {
                if (TaxPayerIsLink.GetValueOrDefault(false))
                {
                    fileUrl = (CustomUri.GetAbsoluteUrl("upload/" + TaxPayerLinkId.Value) + "/" + TaxPayerDocumentName);
                }
                else
                {
                    fileUrl = (CustomUri.GetAbsoluteUrl("upload/" + TaxPayerId.Value) + "/" + TaxPayerDocumentName);
                }
            }
            ReviewWindow review = new ReviewWindow(fileUrl + ".xod");

            review.Show();
        }
Esempio n. 3
0
        private void OnViewCommand()
        {
            ReviewWindow review = new ReviewWindow(FileUrl + ".xod");

            review.Show();
        }