LayoutCycleTracingLevel 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
定义常量,这些常量指定是否将布局周期跟踪信息写入本机调试器以及所记录的详细信息级别。
public enum class LayoutCycleTracingLevel
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 393216)]
enum class LayoutCycleTracingLevel
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 393216)]
public enum LayoutCycleTracingLevel
Public Enum LayoutCycleTracingLevel
- 继承
-
LayoutCycleTracingLevel
- 属性
字段
High | 2 | 提供了更详细的布局周期信息,其中包括所有 |
Low | 1 | 最小布局周期信息记录在故障转储的 存放异常 中。 相同的信息也会输出到本机调试器。 |
None | 0 | 最小布局周期信息记录在故障转储的 存放异常 中。 本机调试器没有输出。 |
示例
public App () { this.InitializeComponent () ;
#if DEBUGSettings.LayoutCycleTracingLevel = LayoutCycleTracingLevel.High;DebugSettings.LayoutCycleDebugBreakLevel = LayoutCycleDebugBreakLevel.Low;#endif }
注解
此枚举为 DebugSettings.LayoutCycleTracingLevel 属性提供值。