在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#热图(heatmap)源码

C#热图(heatmap)源码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.75M
  • 下载次数:21
  • 浏览次数:214
  • 发布时间:2022-09-08
  • 实例类别:C#语言基础
  • 发 布 人:guobin_521
  • 文件格式:.rar
  • 所需积分:2
 相关标签: heat map 热度图

实例介绍

【实例简介】C#热图(heatmap)源码

【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── heat map_wpf_learn.rar
└── wpf_learn
    ├── Axis
    │   ├── AssemblyInfo.cs
    │   ├── Axis.csproj
    │   ├── Axis.csproj.user
    │   ├── Data
    │   │   ├── Range.cs
    │   │   └── RangeConverter.cs
    │   ├── HorizontalTick.cs
    │   ├── Tick.cs
    │   ├── bin
    │   │   └── Debug
    │   │       └── net6.0-windows
    │   │           ├── Axis.deps.json
    │   │           ├── Axis.dll
    │   │           └── Axis.pdb
    │   └── obj
    │       ├── Axis.csproj.nuget.dgspec.json
    │       ├── Axis.csproj.nuget.g.props
    │       ├── Axis.csproj.nuget.g.targets
    │       ├── Axis_2lzhdhl4_wpftmp.csproj.nuget.dgspec.json
    │       ├── Axis_2lzhdhl4_wpftmp.csproj.nuget.g.props
    │       ├── Axis_2lzhdhl4_wpftmp.csproj.nuget.g.targets
    │       ├── Debug
    │       │   └── net6.0-windows
    │       │       ├── Axis.AssemblyInfo.cs
    │       │       ├── Axis.AssemblyInfoInputs.cache
    │       │       ├── Axis.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis.assets.cache
    │       │       ├── Axis.csproj.AssemblyReference.cache
    │       │       ├── Axis.csproj.BuildWithSkipAnalyzers
    │       │       ├── Axis.csproj.CoreCompileInputs.cache
    │       │       ├── Axis.csproj.FileListAbsolute.txt
    │       │       ├── Axis.designer.deps.json
    │       │       ├── Axis.designer.runtimeconfig.json
    │       │       ├── Axis.dll
    │       │       ├── Axis.g.resources
    │       │       ├── Axis.pdb
    │       │       ├── Axis_2lzhdhl4_wpftmp.AssemblyInfo.cs
    │       │       ├── Axis_2lzhdhl4_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Axis_2lzhdhl4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis_2lzhdhl4_wpftmp.assets.cache
    │       │       ├── Axis_52rkgp1u_wpftmp.AssemblyInfo.cs
    │       │       ├── Axis_52rkgp1u_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Axis_52rkgp1u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis_52rkgp1u_wpftmp.assets.cache
    │       │       ├── Axis_MarkupCompile.cache
    │       │       ├── Axis_MarkupCompile.i.cache
    │       │       ├── Axis_MarkupCompile.lref
    │       │       ├── Axis_euwp4w5n_wpftmp.AssemblyInfo.cs
    │       │       ├── Axis_euwp4w5n_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Axis_euwp4w5n_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis_euwp4w5n_wpftmp.assets.cache
    │       │       ├── Axis_f3bkpatx_wpftmp.AssemblyInfo.cs
    │       │       ├── Axis_f3bkpatx_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Axis_f3bkpatx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis_f3bkpatx_wpftmp.assets.cache
    │       │       ├── Axis_go3ubgqj_wpftmp.AssemblyInfo.cs
    │       │       ├── Axis_go3ubgqj_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Axis_go3ubgqj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis_go3ubgqj_wpftmp.assets.cache
    │       │       ├── Axis_knnoq1po_wpftmp.AssemblyInfo.cs
    │       │       ├── Axis_knnoq1po_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Axis_knnoq1po_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis_knnoq1po_wpftmp.assets.cache
    │       │       ├── Axis_z5lah3gp_wpftmp.AssemblyInfo.cs
    │       │       ├── Axis_z5lah3gp_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Axis_z5lah3gp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis_z5lah3gp_wpftmp.assets.cache
    │       │       ├── Horiz.g.i.cs
    │       │       ├── HorizonTick.g.i.cs
    │       │       ├── HorizontalTick.baml
    │       │       ├── HorizontalTick.g.cs
    │       │       ├── HorizontalTick.g.i.cs
    │       │       ├── UserControl1.g.i.cs
    │       │       ├── ref
    │       │       │   └── Axis.dll
    │       │       └── refint
    │       │           └── Axis.dll
    │       ├── project.assets.json
    │       └── project.nuget.cache
    ├── Axis.Data
    │   ├── Axis.Data.csproj
    │   ├── Range.cs
    │   ├── RangeConverter.cs
    │   ├── bin
    │   │   └── Debug
    │   │       └── net6.0
    │   │           ├── Axis.Data.deps.json
    │   │           ├── Axis.Data.dll
    │   │           └── Axis.Data.pdb
    │   └── obj
    │       ├── Axis.Data.csproj.nuget.dgspec.json
    │       ├── Axis.Data.csproj.nuget.g.props
    │       ├── Axis.Data.csproj.nuget.g.targets
    │       ├── Debug
    │       │   └── net6.0
    │       │       ├── Axis.Data.AssemblyInfo.cs
    │       │       ├── Axis.Data.AssemblyInfoInputs.cache
    │       │       ├── Axis.Data.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Axis.Data.GlobalUsings.g.cs
    │       │       ├── Axis.Data.assets.cache
    │       │       ├── Axis.Data.csproj.AssemblyReference.cache
    │       │       ├── Axis.Data.csproj.CoreCompileInputs.cache
    │       │       ├── Axis.Data.csproj.FileListAbsolute.txt
    │       │       ├── Axis.Data.dll
    │       │       ├── Axis.Data.pdb
    │       │       ├── ref
    │       │       │   └── Axis.Data.dll
    │       │       └── refint
    │       │           └── Axis.Data.dll
    │       ├── project.assets.json
    │       └── project.nuget.cache
    ├── ChartData
    │   ├── ChartData.csproj
    │   ├── Range.cs
    │   ├── RangeConverter.cs
    │   ├── bin
    │   │   └── Debug
    │   │       └── net6.0
    │   └── obj
    │       ├── ChartData.csproj.nuget.dgspec.json
    │       ├── ChartData.csproj.nuget.g.props
    │       ├── ChartData.csproj.nuget.g.targets
    │       ├── Debug
    │       │   └── net6.0
    │       │       ├── ChartData.AssemblyInfo.cs
    │       │       ├── ChartData.AssemblyInfoInputs.cache
    │       │       ├── ChartData.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── ChartData.GlobalUsings.g.cs
    │       │       ├── ChartData.assets.cache
    │       │       ├── ChartData.csproj.AssemblyReference.cache
    │       │       ├── ref
    │       │       └── refint
    │       ├── project.assets.json
    │       └── project.nuget.cache
    ├── ChartUserControl
    │   ├── ChartUserControl.csproj
    │   ├── GridLineShape.cs
    │   ├── HorizontalTick.cs
    │   ├── Tick.cs
    │   ├── VerticalTick.cs
    │   ├── bin
    │   │   └── Debug
    │   │       └── net6.0-windows
    │   │           ├── ChartUserControl.Data.dll
    │   │           ├── ChartUserControl.Data.pdb
    │   │           ├── ChartUserControl.deps.json
    │   │           ├── ChartUserControl.dll
    │   │           └── ChartUserControl.pdb
    │   └── obj
    │       ├── ChartUserControl.csproj.nuget.dgspec.json
    │       ├── ChartUserControl.csproj.nuget.g.props
    │       ├── ChartUserControl.csproj.nuget.g.targets
    │       ├── Debug
    │       │   └── net6.0-windows
    │       │       ├── ChartUserControl.AssemblyInfo.cs
    │       │       ├── ChartUserControl.AssemblyInfoInputs.cache
    │       │       ├── ChartUserControl.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── ChartUserControl.assets.cache
    │       │       ├── ChartUserControl.csproj.AssemblyReference.cache
    │       │       ├── ChartUserControl.csproj.CopyComplete
    │       │       ├── ChartUserControl.csproj.CoreCompileInputs.cache
    │       │       ├── ChartUserControl.csproj.FileListAbsolute.txt
    │       │       ├── ChartUserControl.designer.deps.json
    │       │       ├── ChartUserControl.designer.runtimeconfig.json
    │       │       ├── ChartUserControl.dll
    │       │       ├── ChartUserControl.pdb
    │       │       ├── ref
    │       │       │   └── ChartUserControl.dll
    │       │       └── refint
    │       │           └── ChartUserControl.dll
    │       ├── project.assets.json
    │       └── project.nuget.cache
    ├── ChartUserControl.Data
    │   ├── ChartUserControl.Data.csproj
    │   ├── Range.cs
    │   ├── RangeConverter.cs
    │   ├── bin
    │   │   └── Debug
    │   │       └── net6.0
    │   │           ├── ChartUserControl.Data.deps.json
    │   │           ├── ChartUserControl.Data.dll
    │   │           └── ChartUserControl.Data.pdb
    │   └── obj
    │       ├── ChartUserControl.Data.csproj.nuget.dgspec.json
    │       ├── ChartUserControl.Data.csproj.nuget.g.props
    │       ├── ChartUserControl.Data.csproj.nuget.g.targets
    │       ├── Debug
    │       │   └── net6.0
    │       │       ├── ChartUserControl.Data.AssemblyInfo.cs
    │       │       ├── ChartUserControl.Data.AssemblyInfoInputs.cache
    │       │       ├── ChartUserControl.Data.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── ChartUserControl.Data.GlobalUsings.g.cs
    │       │       ├── ChartUserControl.Data.assets.cache
    │       │       ├── ChartUserControl.Data.csproj.AssemblyReference.cache
    │       │       ├── ChartUserControl.Data.csproj.CoreCompileInputs.cache
    │       │       ├── ChartUserControl.Data.csproj.FileListAbsolute.txt
    │       │       ├── ChartUserControl.Data.dll
    │       │       ├── ChartUserControl.Data.pdb
    │       │       ├── ref
    │       │       │   └── ChartUserControl.Data.dll
    │       │       └── refint
    │       │           └── ChartUserControl.Data.dll
    │       ├── project.assets.json
    │       └── project.nuget.cache
    ├── Demo
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── AssemblyInfo.cs
    │   ├── Demo.csproj
    │   ├── Demo.csproj.user
    │   ├── Engine
    │   │   ├── Base.cs
    │   │   ├── ColorTable.cs
    │   │   ├── GraphicsEngine.cs
    │   │   └── Layer.cs
    │   ├── HeatMap.xaml
    │   ├── HeatMap.xaml.cs
    │   ├── MainWindow.xaml
    │   ├── MainWindow.xaml.cs
    │   ├── bin
    │   │   └── Debug
    │   │       └── net6.0-windows
    │   │           ├── ChartUserControl.Data.dll
    │   │           ├── ChartUserControl.Data.pdb
    │   │           ├── ChartUserControl.dll
    │   │           ├── ChartUserControl.pdb
    │   │           ├── Demo.deps.json
    │   │           ├── Demo.dll
    │   │           ├── Demo.exe
    │   │           ├── Demo.pdb
    │   │           ├── Demo.runtimeconfig.json
    │   │           ├── SharpGL.SceneGraph.dll
    │   │           ├── SharpGL.WPF.dll
    │   │           └── SharpGL.dll
    │   └── obj
    │       ├── Debug
    │       │   └── net6.0-windows
    │       │       ├── App.g.cs
    │       │       ├── App.g.i.cs
    │       │       ├── Demo.AssemblyInfo.cs
    │       │       ├── Demo.AssemblyInfoInputs.cache
    │       │       ├── Demo.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo.assets.cache
    │       │       ├── Demo.csproj.AssemblyReference.cache
    │       │       ├── Demo.csproj.BuildWithSkipAnalyzers
    │       │       ├── Demo.csproj.CopyComplete
    │       │       ├── Demo.csproj.CoreCompileInputs.cache
    │       │       ├── Demo.csproj.FileListAbsolute.txt
    │       │       ├── Demo.designer.deps.json
    │       │       ├── Demo.designer.runtimeconfig.json
    │       │       ├── Demo.dll
    │       │       ├── Demo.g.resources
    │       │       ├── Demo.genruntimeconfig.cache
    │       │       ├── Demo.pdb
    │       │       ├── Demo_0oilsghe_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_0oilsghe_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_0oilsghe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_0oilsghe_wpftmp.assets.cache
    │       │       ├── Demo_2ixj31dc_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_2ixj31dc_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_2ixj31dc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_2ixj31dc_wpftmp.assets.cache
    │       │       ├── Demo_3gxx0ekv_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_3gxx0ekv_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_3gxx0ekv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_3gxx0ekv_wpftmp.assets.cache
    │       │       ├── Demo_3gxx0ekv_wpftmp.csproj.BuildWithSkipAnalyzers
    │       │       ├── Demo_4zrkmfs1_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_4zrkmfs1_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_4zrkmfs1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_4zrkmfs1_wpftmp.assets.cache
    │       │       ├── Demo_5algjnqx_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_5algjnqx_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_5algjnqx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_5algjnqx_wpftmp.assets.cache
    │       │       ├── Demo_MarkupCompile.cache
    │       │       ├── Demo_MarkupCompile.i.cache
    │       │       ├── Demo_MarkupCompile.i.lref
    │       │       ├── Demo_MarkupCompile.lref
    │       │       ├── Demo_aiwisbwu_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_aiwisbwu_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_aiwisbwu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_aiwisbwu_wpftmp.assets.cache
    │       │       ├── Demo_dj0doby1_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_dj0doby1_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_dj0doby1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_dj0doby1_wpftmp.assets.cache
    │       │       ├── Demo_dtcjgunu_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_dtcjgunu_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_dtcjgunu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_dtcjgunu_wpftmp.assets.cache
    │       │       ├── Demo_emjdg52a_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_emjdg52a_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_emjdg52a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_emjdg52a_wpftmp.assets.cache
    │       │       ├── Demo_f34txxlq_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_f34txxlq_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_f34txxlq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_f34txxlq_wpftmp.assets.cache
    │       │       ├── Demo_fyxxhwug_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_fyxxhwug_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_fyxxhwug_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_fyxxhwug_wpftmp.assets.cache
    │       │       ├── Demo_fzwi3mha_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_fzwi3mha_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_fzwi3mha_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_fzwi3mha_wpftmp.assets.cache
    │       │       ├── Demo_fzwi3mha_wpftmp.csproj.BuildWithSkipAnalyzers
    │       │       ├── Demo_iai2cp2p_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_iai2cp2p_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_iai2cp2p_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_iai2cp2p_wpftmp.assets.cache
    │       │       ├── Demo_iuaqwkpu_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_iuaqwkpu_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_iuaqwkpu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_iuaqwkpu_wpftmp.assets.cache
    │       │       ├── Demo_jsp5iuw5_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_jsp5iuw5_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_jsp5iuw5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_jsp5iuw5_wpftmp.assets.cache
    │       │       ├── Demo_jsp5iuw5_wpftmp.csproj.BuildWithSkipAnalyzers
    │       │       ├── Demo_m5qfd0nz_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_m5qfd0nz_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_m5qfd0nz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_m5qfd0nz_wpftmp.assets.cache
    │       │       ├── Demo_nfuylt0s_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_nfuylt0s_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_nfuylt0s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_nfuylt0s_wpftmp.assets.cache
    │       │       ├── Demo_nfuylt0s_wpftmp.csproj.BuildWithSkipAnalyzers
    │       │       ├── Demo_ni0r1xgp_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_ni0r1xgp_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_ni0r1xgp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_ni0r1xgp_wpftmp.assets.cache
    │       │       ├── Demo_pfmxytj1_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_pfmxytj1_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_pfmxytj1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_pfmxytj1_wpftmp.assets.cache
    │       │       ├── Demo_pfmxytj1_wpftmp.csproj.BuildWithSkipAnalyzers
    │       │       ├── Demo_s1jpmhak_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_s1jpmhak_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_s1jpmhak_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_s1jpmhak_wpftmp.assets.cache
    │       │       ├── Demo_ssxhihfh_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_ssxhihfh_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_ssxhihfh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_ssxhihfh_wpftmp.assets.cache
    │       │       ├── Demo_udsvlda0_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_udsvlda0_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_udsvlda0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_udsvlda0_wpftmp.assets.cache
    │       │       ├── Demo_udsvlda0_wpftmp.csproj.BuildWithSkipAnalyzers
    │       │       ├── Demo_vsbuhl30_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_vsbuhl30_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_vsbuhl30_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_vsbuhl30_wpftmp.assets.cache
    │       │       ├── Demo_xr242sdn_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_xr242sdn_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_xr242sdn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_xr242sdn_wpftmp.assets.cache
    │       │       ├── Demo_xvdyljbf_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_xvdyljbf_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_xvdyljbf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_xvdyljbf_wpftmp.assets.cache
    │       │       ├── Demo_yx4pgwjm_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_yx4pgwjm_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_yx4pgwjm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_yx4pgwjm_wpftmp.assets.cache
    │       │       ├── Demo_zj2srxcm_wpftmp.AssemblyInfo.cs
    │       │       ├── Demo_zj2srxcm_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── Demo_zj2srxcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Demo_zj2srxcm_wpftmp.assets.cache
    │       │       ├── Demo_zj2srxcm_wpftmp.csproj.BuildWithSkipAnalyzers
    │       │       ├── GeneratedInternalTypeHelper.g.cs
    │       │       ├── GeneratedInternalTypeHelper.g.i.cs
    │       │       ├── HeatMap.baml
    │       │       ├── HeatMap.g.cs
    │       │       ├── HeatMap.g.i.cs
    │       │       ├── MainWindow.baml
    │       │       ├── MainWindow.g.cs
    │       │       ├── MainWindow.g.i.cs
    │       │       ├── apphost.exe
    │       │       ├── ref
    │       │       │   └── Demo.dll
    │       │       └── refint
    │       │           └── Demo.dll
    │       ├── Demo.csproj.nuget.dgspec.json
    │       ├── Demo.csproj.nuget.g.props
    │       ├── Demo.csproj.nuget.g.targets
    │       ├── Demo_dj0doby1_wpftmp.csproj.nuget.dgspec.json
    │       ├── Demo_dj0doby1_wpftmp.csproj.nuget.g.props
    │       ├── Demo_dj0doby1_wpftmp.csproj.nuget.g.targets
    │       ├── Demo_iai2cp2p_wpftmp.csproj.nuget.dgspec.json
    │       ├── Demo_iai2cp2p_wpftmp.csproj.nuget.g.props
    │       ├── Demo_iai2cp2p_wpftmp.csproj.nuget.g.targets
    │       ├── project.assets.json
    │       └── project.nuget.cache
    ├── UIControl
    │   ├── AssemblyInfo.cs
    │   ├── MiniButton.xaml
    │   ├── MiniButton.xaml.cs
    │   ├── UIControl.csproj
    │   ├── UIControl.csproj.user
    │   ├── bin
    │   │   └── Debug
    │   │       └── net6.0-windows
    │   │           ├── UIControl.deps.json
    │   │           ├── UIControl.dll
    │   │           └── UIControl.pdb
    │   └── obj
    │       ├── Debug
    │       │   └── net6.0-windows
    │       │       ├── MiniButton.baml
    │       │       ├── MiniButton.g.cs
    │       │       ├── MiniButton.g.i.cs
    │       │       ├── Page1.g.i.cs
    │       │       ├── UIControl.AssemblyInfo.cs
    │       │       ├── UIControl.AssemblyInfoInputs.cache
    │       │       ├── UIControl.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl.assets.cache
    │       │       ├── UIControl.csproj.AssemblyReference.cache
    │       │       ├── UIControl.csproj.CoreCompileInputs.cache
    │       │       ├── UIControl.csproj.FileListAbsolute.txt
    │       │       ├── UIControl.designer.deps.json
    │       │       ├── UIControl.designer.runtimeconfig.json
    │       │       ├── UIControl.dll
    │       │       ├── UIControl.g.resources
    │       │       ├── UIControl.pdb
    │       │       ├── UIControl_54rjknto_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_54rjknto_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_54rjknto_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_54rjknto_wpftmp.assets.cache
    │       │       ├── UIControl_MarkupCompile.cache
    │       │       ├── UIControl_MarkupCompile.i.cache
    │       │       ├── UIControl_MarkupCompile.i.lref
    │       │       ├── UIControl_MarkupCompile.lref
    │       │       ├── UIControl_bkujgriq_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_bkujgriq_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_bkujgriq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_bkujgriq_wpftmp.assets.cache
    │       │       ├── UIControl_hxwtsors_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_hxwtsors_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_hxwtsors_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_hxwtsors_wpftmp.assets.cache
    │       │       ├── UIControl_jujgqrz0_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_jujgqrz0_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_jujgqrz0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_jujgqrz0_wpftmp.assets.cache
    │       │       ├── UIControl_om5aim4u_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_om5aim4u_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_om5aim4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_om5aim4u_wpftmp.assets.cache
    │       │       ├── UIControl_pmapehyx_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_pmapehyx_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_pmapehyx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_pmapehyx_wpftmp.assets.cache
    │       │       ├── UIControl_qtogdxs1_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_qtogdxs1_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_qtogdxs1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_qtogdxs1_wpftmp.assets.cache
    │       │       ├── UIControl_stye3n3q_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_stye3n3q_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_stye3n3q_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_stye3n3q_wpftmp.assets.cache
    │       │       ├── UIControl_tval42tn_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_tval42tn_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_tval42tn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_tval42tn_wpftmp.assets.cache
    │       │       ├── UIControl_u0q5pxxq_wpftmp.AssemblyInfo.cs
    │       │       ├── UIControl_u0q5pxxq_wpftmp.AssemblyInfoInputs.cache
    │       │       ├── UIControl_u0q5pxxq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── UIControl_u0q5pxxq_wpftmp.assets.cache
    │       │       ├── UserControl1.g.i.cs
    │       │       ├── ref
    │       │       │   └── UIControl.dll
    │       │       └── refint
    │       │           └── UIControl.dll
    │       ├── UIControl.csproj.nuget.dgspec.json
    │       ├── UIControl.csproj.nuget.g.props
    │       ├── UIControl.csproj.nuget.g.targets
    │       ├── project.assets.json
    │       └── project.nuget.cache
    └── wpf_learn.sln

66 directories, 420 files



标签: heat map 热度图

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警