Just so you know, i am total newbie of WPF.
So, currently, i have created two project, which are, the MyProject that contain the MainWindow and the other one is a Usercontrol project: MyUserControl that holds my UCGridView.
I have referred MyUControl to MyProject (MyProject refer MyUControl), and then i tried to create the following inside the MainWindow:
Dim uc As New MyUserControl.UCGridView()
What i am trying to achieve is to access the GridView (x:Name="myGridView") inside UCGridView by using the code. Maybe by using something like this:
uc.myGridView...
Is it possible guys? if possible, then i will really appreciate answers from you all. Thank you for your time.