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

New Post: Func and ProgressTextAttribute for ManagedAction

$
0
0
It is a good idea. Will definitely do it in the next release.
Though the ManagedUI events offer you even better (except 'progress text') support:
project.Load += msi_Load;
project.BeforeInstall += msi_BeforeInstall;
project.AfterInstall += msi_AfterInstall;
...
staticvoid msi_Load(SetupEventArgs e)
{
    MessageBox.Show(e.ToString(), "Load");
}

staticvoid msi_BeforeInstall(SetupEventArgs e)
{
    MessageBox.Show(e.ToString(), "BeforeInstall");
}

staticvoid msi_AfterInstall(SetupEventArgs e)
{
    MessageBox.Show(e.ToString(), "AfterExecute");
}

Viewing all articles
Browse latest Browse all 1354

Trending Articles



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