How to view the rest of a partial class in a silverlight project?

So this makes me wonder if I cannot see the rest of the partial MainPage class in MainPage.xaml.cs of my silverlight application.

I no longer have encoding issues, but is there any way to view it? I want to see other partial classes. I feel that I can’t control my code and that I don’t understand it ...

PS: I know HTML5 ->> silverlight, but this is a corporate solution.

+4
source share
3 answers

If you click on the drop-down list on MainPage.xaml.cs, you will see gray gray methods, these are the methods you are looking for. If you have another partial class based on your MainPage, they will also be visible there.

+4
source

When you press Ctrl, click on the class name (MainPage for this instance), and you will see a list of other particulars. Not for Silverlight projects.

This is a good way to extend the class that I think. When you are doing well.

enter image description here

+1
source

Must be in YourProject \ obj \ x86 \ Debug \ MainWindow.g.cs

0
source

Source: https://habr.com/ru/post/1401877/


All Articles