WPF & Datargidview Control
The Windows Forms DataGridView control may be hosted in a WPF form using a <WindowsFormsHost> tag(in fact any Windows Forms Control may be hosted within this tag, which provides a solution to the lack of a WPF Data Grid control).
The following XAML and VB.Net code was done using Visual Studio 2005 .
In a WPF Windows application:
- add a reference to WindowsFormsIntegration (WindowsFormsIntegration.dll)
- add a reference to System.Windows.Forms:
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms" ...
- add the following XAML to host the DataGridView control
<StackPanel>
<WindowsFormsHost Width="200" Height="200">
<wf:DataGridView x:Name="dgv"> </wf:DataGridView>
</WindowsFormsHost>
</StackPanel>
Note: it appears that the <WindowsFormsHost> should have Width and Height attributes to ensure that the DataGridView will render with scrollbars
- Build the Project
In the associated code view for the XMAL(Windows.xaml.vb) :
- Add the following code to the Window1_Loaded event handler:
'Use the Authors table in the Pubs database
Dim conn As New System.Data.SqlClient.SqlConnection("integrated security=true;database=pubs")
Dim da As New System.Data.SqlClient.SqlDataAdapter("select * from employee", conn)
Dim ds As New System.Data.DataSetda.Fill(ds)
Me.dgv.DataSource = ds.Tables(0)
Me.dgv.DataMember = ds.Tables(0).TableName
Me.dgv.ScrollBars = System.Windows.Forms.ScrollBars.Both
Me.dgv.Visible = True
Run the program to display the WPF with the DataGridView.
Note that <WindowsFormsHost> may only contain one Windows Forms Control. Use multiple <WindowsFormsHost> tags or create a Windows Forms User Control with the desired layout and host in using in <WindowsFormsHost>. Also, the DataGridView will not render with any WPF styles that may have defined.
2 Comments:
Good tutorial here's more: http://thedotnetsource.blogspot.com
影音視訊聊天 台灣情色論壇 go2av免費影片卡通 666vl net 0951成人頻道下載 qq美美色網 ut13077視訊聊天 台灣kiss911 18成人免費a片 男人幫 成人網站-天天看美女 日本a卡漫 聊天室ut 5278免費影片 aa 片俱樂部 失敗論壇 影音交友mmshow tw av女優影片,aa片免費看影片 卡通aa片avdvd 美女交友thcmt vsbox色美媚入口 洪爺自拍走光貼圖 一對多視訊,美女短片免費試看 0204成人 視訊交友fireup 台灣kiss情色貼圖區 彩虹AV影音視訊聊天室 性愛日記 ez sex貼片區 aaa片免費看影片 aio小魔女自拍qk 免費試看成人片 g8mm視訊網 色妹妹a漫18 禁 免費視訊聊天 173 線上 aa 片試看嘟嘟 火辣視訊情人 av080下載 aa免費看影片 網愛 正妹百人斬飯島愛 情色sex520 ss369成人色網 免費a片線上看,卡通aa片免費看 aa的滿18歲影片 視訊-愛情館 八國聯軍成人 高雄視訊sexy girl34c 成人自拍色情avdvd 線上aa片試看嘟嘟
Post a Comment
<< Home