简体   繁体   中英

WinForm progressbar not working when I open that form in Wpf application?

I created a Windows form project in Visual studio and used a progress bar with style as marquee and I created another wpf project and added windows project reference to the newly created wpf project and call the form in a button click event as

private void Button_Click(object sender, RoutedEventArgs e)
{
   Form1 form = new Form1();
   form.Show();
}

But the progress bar inside the form is not working.

I fixed the above issue by adding the following lines

 System.Windows.Forms.Application.EnableVisualStyles();
 System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM