tinkywinky24 Ответов: 2

Как автоматически отобразить определенный pdf-файл


hello there. can you help me how to display a certain pdf file? for example  if i click the button1 then the 1.pdf and when i click the other button it will also show my 2nd pdf file. i want to show it inside my form. what can i use from toolbox to show that pdf? coz when i use the acrobat reader it only displays gray.. help me thanks.


Что я уже пробовал:

я пробовал использовать pdf acrobat reader

Karthik_Mahalingam

опубликуйте код того, что вы уже пробовали.

2 Ответов

Рейтинг:
2

Karthik_Mahalingam

Вы должны использовать Управление WebBrowser (Windows Forms)[^]

private void button1_Click(object sender, EventArgs e)
       {
           webBrowser1.Url = new Uri(@"D:\Design_Patterns.pdf");
       }


tinkywinky24

спасибо за ваш ответ :)

Karthik_Mahalingam

добро пожаловать :)

Рейтинг:
14

tinkywinky24

спасибо вам это очень помогает :)

Graeme_Grant

;)