Windows Longhorn build 4059
Build of Windows Longhorn | |
![]() | |
Version number | 6.0 |
---|---|
Build number | 4059 |
Architecture | x86 |
Compiled on | 2003 |
Windows Longhorn build 4059 is a build of Windows Longhorn. A reference of this build was found in the WindowsListView.cs
file, located within the reference source code for the .NET 4.5.1 version of Windows Presentation Foundation. It mentions that builds after 4059 always display the view header regardless of the view mode being used in Explorer. This is consistent with the behaviour shown in later builds of Longhorn.
WindowsListView.cs
[edit | edit source]
// Current LH builds (4059) display the header even in tile view,
// which makes us think we are in details view.
// Explicitly detect tile view and return false.
if (view == NativeMethods.LV_VIEW_TILE)
{
return false;
}
if (InReportView(hwnd) || (view == NativeMethods.LV_VIEW_DETAILS))
{
return true;
}