By default, all partial class files are displayed in the Solution Explorer, but you can choose to hide some partial class from view. There are exists only form designer and resources toggle outlining.
This is fragment of Project file:
<ItemGroup>
<Compile Include="MyClass.cs" />
<Compile Include="MyClass.Singleton.cs" />
</ItemGroup>
There are two partial class files. Both files are displayed in line.
DependentUpon attribute within Compile attribute create toggle outlining for it.
<ItemGroup>
<Compile Include="MyClass.cs" />
<Compile Include="MyClass.Singleton.cs">
<DependentUpon>MyClass.cs</DependentUpon>
</Compile>
</ItemGroup>
File MyClass.Singleton.cs is hidden inside file MyClass.cs in a Solution Explorer.
This feature does not work with WinForms.
See: http://blog.vyvojar.cz/bst/archive/2006/05/31/8277.aspx
Also a good article about partial classes can be found here: http://en.wikipedia.org/wiki/Partial_class