This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Sic06/FrameworkLocal/UIClient/DataGridTransform/DataGrid/Microsoft/Windows/Controls/DataGridRowDetailsVisibilit...

16 lines
601 B
C#

//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
namespace ExtendedGrid.Microsoft.Windows.Controls
{
public enum DataGridRowDetailsVisibilityMode
{
Collapsed, // Show no details by default. Developer must toggle visibility
Visible, // Show the details section for all rows
VisibleWhenSelected // Show the details section only for the selected row(s)
}
}