Quantcast
Channel: wixsharp Discussions Rss Feed
Viewing all articles
Browse latest Browse all 1354

New Post: How to get textbox values from Custom CLR dialog and use inside CustomAction

$
0
0
EmbeddedUI/ManagedUI
Have a look at CustomUIDialog sample. Itr shows how to set session properties aor tunneled for deferred action Data:
void next_Click(object sender, EventArgs e)
        {
            MsiRuntime.Session["PASSWORD"] = password.Text;
            MsiRuntime.Session["DOMAIN"] = domain.Text;
            MsiRuntime.Data["test"] = "test value";
            Shell.GoNext();
        }
CLR Dialog
Have a look at CustomCLRDialog. It will be something like this:
privatevoid nextBtn_Click(object sender, EventArgs e)
{
    this.session["prop name"] = "whatever";
    MSINext();
} 

Viewing all articles
Browse latest Browse all 1354

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>