WPF學習日記29

shengshengwang發表於2020-12-22

1.System.Windows.Controls.Primitives.UniformGrid
解析:Provides a way to arrange content in a grid where all the cells in the grid have the same size.

2.System.Windows.Media.Effects.DropShadowEffect
解析:A bitmap effect that paints a drop shadow around the target texture.

3.System.Windows.Shapes.Path
解析:Draws a series of connected lines and curves.

4.System.Windows.ResourceDictionary.MergedDictionaries()
解析:Gets a collection of the ResourceDictionary dictionaries that constitute the various resource dictionaries in the merged dictionaries.

5.System.Windows.Media.ImageBrush
解析:Paints an area with an image.

6.System.Windows.Controls.ControlTemplate
解析:Specifies the visual structure and behavioral aspects of a Control that can be shared across multiple instances of the control.

7.System.Windows.Controls.ScrollViewer
解析:Represents a scrollable area that can contain other visible elements.

8.System.Windows.SystemParameters
解析:包含查詢系統設定的屬性。

9.System.Windows.Controls.Page
解析:Encapsulates a page of content that can be navigated to and hosted by Windows Internet Explorer, NavigationWindow, and Frame.

10.System.Type
解析:Represents type declarations: class types, interface types, array types, value types, enumeration types, type parameters, generic type definitions, and open or closed constructed generic types.

11.System.Type.GetType(string typeName)
解析:Gets the Type with the specified name, performing a case-sensitive search.

12.System.Reflection.ConstructorInfo
解析:Discovers the attributes of a class constructor and provides access to constructor metadata.

13.System.Type.EmptyTypes
解析:Represents an empty array of type Type.

14.System.Windows.StartupEventArgs
解析:Contains the arguments for the Startup event.

15.System.Windows.UIElement.RenderTransform()
解析:Gets or sets transform information that affects the rendering position of this element. This is a dependency property.

16.System.Windows.Media.Transform
解析:Defines functionality that enables transformations in a 2-D plane.

17.System.Windows.Media.Animation.Storyboard
解析:A container timeline that provides object and property targeting information for its child animations.

18.System.Windows.EventTrigger
解析:Represents a trigger that applies a set of actions in response to an event.

19.System.Windows.FrameworkElement.Resources()
解析:Gets or sets the locally-defined resource dictionary.

20.ContentControl
解析:內容控制元件。

21.System.Globalization.CultureInfo
解析:當進行數字,日期時間,字串匹配時,可能會遇到CultureInfo的操作。

22.GalaSoft.MvvmLight.ObservableObject
解析:A base class for objects of which the properties must be observable.

23.System.ICloneable
解析:支援克隆,即用與現有例項相同的值建立類的新例項。

24.app.config
解析:
[1]connectionStrings:用於設定資料庫連線字串
[2]sectionGroup:自定義配置節組
[3]appSettings:用於整個程式的配置,以鍵值對的形式出現
[4]configSections:自定義configSections,擴充套件appSettings節的功能

25.從app.config中讀取字串
解析:ConfigurationManager.ConnectionStrings["ConnectionStringMain"].ConnectionString;

相關文章