MaterialDesignThemes.Wpf.xml 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>MaterialDesignThemes.Wpf</name>
  5. </assembly>
  6. <members>
  7. <member name="F:MaterialDesignThemes.Wpf.ButtonAssist.CornerRadiusProperty">
  8. <summary>
  9. Controls the corner radius of the surrounding box.
  10. </summary>
  11. </member>
  12. <member name="T:MaterialDesignThemes.Wpf.CalendarFormatInfo">
  13. <summary>
  14. Provides culture-specific information about the format of calendar.
  15. </summary>
  16. </member>
  17. <member name="P:MaterialDesignThemes.Wpf.CalendarFormatInfo.YearMonthPattern">
  18. <summary>
  19. Gets the custom format string for a year and month value.
  20. </summary>
  21. </member>
  22. <member name="P:MaterialDesignThemes.Wpf.CalendarFormatInfo.ComponentOnePattern">
  23. <summary>
  24. Gets the custom format string for a component one value.
  25. </summary>
  26. </member>
  27. <member name="P:MaterialDesignThemes.Wpf.CalendarFormatInfo.ComponentTwoPattern">
  28. <summary>
  29. Gets the custom format string for a component two value.
  30. </summary>
  31. </member>
  32. <member name="P:MaterialDesignThemes.Wpf.CalendarFormatInfo.ComponentThreePattern">
  33. <summary>
  34. Gets the custom format string for a component three value.
  35. </summary>
  36. </member>
  37. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.SetYearPattern(System.String[],System.String)">
  38. <summary>
  39. Sets the culture-specific custom format string for a year value.
  40. </summary>
  41. <param name="cultureNames">An array of string that specify the name of culture to set the <paramref name="yearPattern"/> for.</param>
  42. <param name="yearPattern">The custom format string for a year value. If null, culture-specific custom format string for a year value is removed.</param>
  43. <exception cref="T:System.ArgumentNullException"><paramref name="cultureNames"/> is null.</exception>
  44. </member>
  45. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.SetYearPattern(System.String,System.String)">
  46. <summary>
  47. Sets the culture-specific custom format string for a year value.
  48. </summary>
  49. <param name="cultureName">A string that specify the name of culture to set the <paramref name="yearPattern"/> for.</param>
  50. <param name="yearPattern">The custom format string for a year value. If null, culture-specific custom format string for a year value is removed.</param>
  51. <exception cref="T:System.ArgumentNullException"><paramref name="cultureName"/> is null.</exception>
  52. </member>
  53. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.SetDayOfWeekStyle(System.String[],MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle)">
  54. <summary>
  55. Sets the culture-specific day of week style.
  56. </summary>
  57. <param name="cultureNames">An array of string that specify the name of culture to set the <paramref name="dayOfWeekStyle"/> for.</param>
  58. <param name="dayOfWeekStyle">A <see cref="T:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle"/> to be set.</param>
  59. <exception cref="T:System.ArgumentNullException"><paramref name="cultureNames"/> is null.</exception>
  60. </member>
  61. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.SetDayOfWeekStyle(System.String,MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle)">
  62. <summary>
  63. Sets the culture-specific day of week style.
  64. </summary>
  65. <param name="cultureName">A string that specify the name of culture to set the <paramref name="dayOfWeekStyle"/> for.</param>
  66. <param name="dayOfWeekStyle">A <see cref="T:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle"/> to be set.</param>
  67. <exception cref="T:System.ArgumentNullException"><paramref name="cultureName"/> is null.</exception>
  68. </member>
  69. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.ResetDayOfWeekStyle(System.String[])">
  70. <summary>
  71. Resets the culture-specific day of week style to default value.
  72. </summary>
  73. <param name="cultureNames">An array of string that specify the name of culture to reset.</param>
  74. <exception cref="T:System.ArgumentNullException"><paramref name="cultureNames"/> is null.</exception>
  75. </member>
  76. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.ResetDayOfWeekStyle(System.String)">
  77. <summary>
  78. Resets the culture-specific day of week style to default value.
  79. </summary>
  80. <param name="cultureName">A string that specify the name of culture to reset.</param>
  81. <exception cref="T:System.ArgumentNullException"><paramref name="cultureName"/> is null.</exception>
  82. </member>
  83. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.FromCultureInfo(System.Globalization.CultureInfo)">
  84. <summary>
  85. Creates a <see cref="T:MaterialDesignThemes.Wpf.CalendarFormatInfo"/> from the <see cref="T:System.Globalization.CultureInfo"/>.
  86. </summary>
  87. <param name="cultureInfo">A <see cref="T:System.Globalization.CultureInfo"/> that specifies the culture to get the date format.</param>
  88. <returns>The <see cref="T:MaterialDesignThemes.Wpf.CalendarFormatInfo"/> object that this method creates.</returns>
  89. <exception cref="T:System.ArgumentNullException"><paramref name="cultureInfo"/> is null.</exception>
  90. </member>
  91. <member name="T:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle">
  92. <summary>
  93. Represents a day of week style.
  94. </summary>
  95. </member>
  96. <member name="P:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle.Pattern">
  97. <summary>
  98. Gets the custom format string for a day of week value.
  99. </summary>
  100. </member>
  101. <member name="P:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle.Separator">
  102. <summary>
  103. Gets the string that separates MonthDay and DayOfWeek.
  104. </summary>
  105. </member>
  106. <member name="P:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle.IsFirst">
  107. <summary>
  108. Gets a value indicating whether DayOfWeek is before MonthDay.
  109. </summary>
  110. </member>
  111. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle.#ctor(System.String,System.String,System.Boolean)">
  112. <summary>
  113. Initializes a new instance of the <see cref="T:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle"/> struct.
  114. </summary>
  115. <param name="pattern">A custom format string for a day of week value.</param>
  116. <param name="separator">A string that separates MonthDay and DayOfWeek.</param>
  117. <param name="isFirst">A value indicating whether DayOfWeek is before MonthDay.</param>
  118. </member>
  119. <member name="M:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle.Parse(System.String)">
  120. <summary>
  121. Extracts the <see cref="T:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle"/> from the date format string.
  122. </summary>
  123. <param name="s">the date format string.</param>
  124. <returns>The <see cref="T:MaterialDesignThemes.Wpf.CalendarFormatInfo.DayOfWeekStyle"/> struct.</returns>
  125. <exception cref="T:System.ArgumentNullException"><paramref name="s"/> is null.</exception>
  126. </member>
  127. <member name="P:MaterialDesignThemes.Wpf.Chip.IsDeletable">
  128. <summary>
  129. Indicates if the delete button should be visible.
  130. </summary>
  131. </member>
  132. <member name="M:MaterialDesignThemes.Wpf.ClockItemButton.OnClick">
  133. <summary>
  134. This override method is called when the control is clicked by mouse or keyboard
  135. </summary>
  136. </member>
  137. <member name="T:MaterialDesignThemes.Wpf.ColorZone">
  138. <summary>
  139. User a colour zone to easily switch the background and foreground colours, from selected Material Design palette or custom ones.
  140. </summary>
  141. </member>
  142. <member name="F:MaterialDesignThemes.Wpf.ComboBoxAssist.ClassicModeProperty">
  143. <summary>
  144. By default ComboBox uses the wrapper popup. Popup can be switched to classic Windows desktop view by means of this attached property.
  145. </summary>
  146. </member>
  147. <member name="F:MaterialDesignThemes.Wpf.ComboBoxAssist.ShowSelectedItemProperty">
  148. <summary>
  149. By default the selected item is displayed in the drop down list, as per Material Design specifications.
  150. To change this to a behavior of hiding the selected item from the drop down list, set this attached property to false.
  151. </summary>
  152. </member>
  153. <member name="T:MaterialDesignThemes.Wpf.Converters.CalendarDateCoalesceConverter">
  154. <summary>
  155. Help us format the content of a header button in a calendar.
  156. </summary>
  157. <remarks>
  158. Expected items, in the following order:
  159. 1) DateTime Calendar.DisplayDate
  160. 2) DateTime? Calendar.SelectedDate
  161. </remarks>
  162. </member>
  163. <member name="F:MaterialDesignThemes.Wpf.Converters.CircularProgressBar.ArcEndPointConverter.ParameterMidPoint">
  164. <summary>
  165. CircularProgressBar draws two arcs to support a full circle at 100 %.
  166. With one arc at 100 % the start point is identical the end point, so nothing is drawn.
  167. Midpoint at half of current percentage is the endpoint of the first arc
  168. and the start point of the second arc.
  169. </summary>
  170. </member>
  171. <member name="T:MaterialDesignThemes.Wpf.Converters.HintProxyFabricConverter">
  172. <summary>
  173. Converter for <see cref="T:MaterialDesignThemes.Wpf.SmartHint"/> control. Can be extended by <see cref="M:MaterialDesignThemes.Wpf.HintProxyFabric.RegisterBuilder(System.Func{System.Windows.Controls.Control,System.Boolean},System.Func{System.Windows.Controls.Control,MaterialDesignThemes.Wpf.IHintProxy})"/> method.
  174. </summary>
  175. </member>
  176. <member name="T:MaterialDesignThemes.Wpf.Converters.ListViewGridViewConverter">
  177. <summary>
  178. Helps coerce the correct item container style for a <see cref="T:System.Windows.Controls.ListView"/>, according to whether the list is displaying in standard mode, or using a <see cref="P:System.Windows.Controls.ListView.View"/>, such as a <see cref="T:System.Windows.Controls.GridView"/>.
  179. </summary>
  180. </member>
  181. <member name="P:MaterialDesignThemes.Wpf.Converters.ListViewGridViewConverter.DefaultValue">
  182. <summary>
  183. Item container style to use when <see cref="P:System.Windows.Controls.ListView.View"/> is <c>null</c>.
  184. </summary>
  185. </member>
  186. <member name="P:MaterialDesignThemes.Wpf.Converters.ListViewGridViewConverter.ViewValue">
  187. <summary>
  188. Item container style to use when <see cref="P:System.Windows.Controls.ListView.View"/> is not <c>null</c>, typically when a <see cref="T:System.Windows.Controls.GridView"/> is applied.
  189. </summary>
  190. </member>
  191. <member name="M:MaterialDesignThemes.Wpf.Converters.ListViewGridViewConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  192. <summary>
  193. Returns the item container <see cref="T:System.Windows.Style"/> to use for a <see cref="T:System.Windows.Controls.ListView"/>.
  194. </summary>
  195. <param name="value">Should be a <see cref="T:System.Windows.Controls.ListView"/> or <see cref="T:System.Windows.Controls.ViewBase"/> instance.</param>
  196. <param name="targetType"></param>
  197. <param name="parameter"></param>
  198. <param name="culture"></param>
  199. <returns></returns>
  200. </member>
  201. <member name="M:MaterialDesignThemes.Wpf.Converters.PickerInnerPaddingConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
  202. <summary>
  203. Sets the left padding for the inner picker button to zero
  204. </summary>
  205. </member>
  206. <member name="M:MaterialDesignThemes.Wpf.Converters.PickerInnerPaddingConverter.Convert(System.Object[],System.Type,System.Object,System.Globalization.CultureInfo)">
  207. <summary>
  208. Adds the width of the inner picker button to the right of inner padding
  209. </summary>
  210. </member>
  211. <member name="M:MaterialDesignThemes.Wpf.Converters.CardClipConverter.Convert(System.Object[],System.Type,System.Object,System.Globalization.CultureInfo)">
  212. <summary>
  213. 1 - Content presenter render size,
  214. 2 - Clipping border padding (main control padding)
  215. </summary>
  216. <param name="values"></param>
  217. <param name="targetType"></param>
  218. <param name="parameter"></param>
  219. <param name="culture"></param>
  220. <returns></returns>
  221. </member>
  222. <member name="M:MaterialDesignThemes.Wpf.DataGridAssist.AllowDirectEditWithoutFocus(System.Object,System.Windows.Input.MouseButtonEventArgs)">
  223. <summary>
  224. Allows editing of components inside of a datagrid cell with a single left click.
  225. </summary>
  226. </member>
  227. <member name="P:MaterialDesignThemes.Wpf.DataGridTextColumn.MaxLength">
  228. <summary>
  229. Set the maximum length for the text field.
  230. </summary>
  231. <remarks>Not a dprop, as is only applied once.</remarks>
  232. </member>
  233. <member name="M:MaterialDesignThemes.Wpf.DialogClosingEventArgs.Cancel">
  234. <summary>
  235. Cancel the close.
  236. </summary>
  237. </member>
  238. <member name="P:MaterialDesignThemes.Wpf.DialogClosingEventArgs.IsCancelled">
  239. <summary>
  240. Indicates if the close has already been cancelled.
  241. </summary>
  242. </member>
  243. <member name="P:MaterialDesignThemes.Wpf.DialogClosingEventArgs.Parameter">
  244. <summary>
  245. Gets the parameter originally provided to <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/>/
  246. </summary>
  247. </member>
  248. <member name="P:MaterialDesignThemes.Wpf.DialogClosingEventArgs.Session">
  249. <summary>
  250. Allows interaction with the current dialog session.
  251. </summary>
  252. </member>
  253. <member name="T:MaterialDesignThemes.Wpf.DialogHostOpenDialogCommandDataContextSource">
  254. <summary>
  255. Defines how a data context is sourced for a dialog if a <see cref="T:System.Windows.FrameworkElement"/>
  256. is passed as the command parameter when using <see cref="F:MaterialDesignThemes.Wpf.DialogHost.OpenDialogCommand"/>.
  257. </summary>
  258. </member>
  259. <member name="F:MaterialDesignThemes.Wpf.DialogHostOpenDialogCommandDataContextSource.SenderElement">
  260. <summary>
  261. The data context from the sender element (typically a <see cref="T:System.Windows.Controls.Button"/>)
  262. is applied to the content.
  263. </summary>
  264. </member>
  265. <member name="F:MaterialDesignThemes.Wpf.DialogHostOpenDialogCommandDataContextSource.DialogHostInstance">
  266. <summary>
  267. The data context from the <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is applied to the content.
  268. </summary>
  269. </member>
  270. <member name="F:MaterialDesignThemes.Wpf.DialogHostOpenDialogCommandDataContextSource.None">
  271. <summary>
  272. The data context is explicitly set to <c>null</c>.
  273. </summary>
  274. </member>
  275. <member name="F:MaterialDesignThemes.Wpf.DialogHost.OpenDialogCommand">
  276. <summary>
  277. Routed command to be used somewhere inside an instance to trigger showing of the dialog. Content can be passed to the dialog via a <see cref="!:Button.CommandParameter"/>.
  278. </summary>
  279. </member>
  280. <member name="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand">
  281. <summary>
  282. Routed command to be used inside dialog content to close a dialog. Use a <see cref="!:Button.CommandParameter"/> to indicate the result of the parameter.
  283. </summary>
  284. </member>
  285. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object)">
  286. <summary>
  287. Shows a modal dialog. To use, a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
  288. </summary>
  289. <param name="content">Content to show (can be a control or view model).</param>
  290. <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/> command.</returns>
  291. </member>
  292. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object,MaterialDesignThemes.Wpf.DialogOpenedEventHandler)">
  293. <summary>
  294. Shows a modal dialog. To use, a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
  295. </summary>
  296. <param name="content">Content to show (can be a control or view model).</param>
  297. <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
  298. <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/> command.</returns>
  299. </member>
  300. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object,MaterialDesignThemes.Wpf.DialogClosingEventHandler)">
  301. <summary>
  302. Shows a modal dialog. To use, a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
  303. </summary>
  304. <param name="content">Content to show (can be a control or view model).</param>
  305. <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
  306. <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/> command.</returns>
  307. </member>
  308. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object,MaterialDesignThemes.Wpf.DialogOpenedEventHandler,MaterialDesignThemes.Wpf.DialogClosingEventHandler)">
  309. <summary>
  310. Shows a modal dialog. To use, a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
  311. </summary>
  312. <param name="content">Content to show (can be a control or view model).</param>
  313. <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
  314. <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
  315. <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/> command.</returns>
  316. </member>
  317. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object,System.Object)">
  318. <summary>
  319. Shows a modal dialog. To use, a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
  320. </summary>
  321. <param name="content">Content to show (can be a control or view model).</param>
  322. <param name="dialogIdentifier"><see cref="P:MaterialDesignThemes.Wpf.DialogHost.Identifier"/> of the instance where the dialog should be shown. Typically this will match an identifer set in XAML. <c>null</c> is allowed.</param>
  323. <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/> command.</returns>
  324. </member>
  325. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object,System.Object,MaterialDesignThemes.Wpf.DialogOpenedEventHandler)">
  326. <summary>
  327. Shows a modal dialog. To use, a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
  328. </summary>
  329. <param name="content">Content to show (can be a control or view model).</param>
  330. <param name="dialogIdentifier"><see cref="P:MaterialDesignThemes.Wpf.DialogHost.Identifier"/> of the instance where the dialog should be shown. Typically this will match an identifer set in XAML. <c>null</c> is allowed.</param>
  331. <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
  332. <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/> command.</returns>
  333. </member>
  334. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object,System.Object,MaterialDesignThemes.Wpf.DialogClosingEventHandler)">
  335. <summary>
  336. Shows a modal dialog. To use, a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
  337. </summary>
  338. <param name="content">Content to show (can be a control or view model).</param>
  339. <param name="dialogIdentifier"><see cref="P:MaterialDesignThemes.Wpf.DialogHost.Identifier"/> of the instance where the dialog should be shown. Typically this will match an identifer set in XAML. <c>null</c> is allowed.</param>
  340. <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
  341. <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/> command.</returns>
  342. </member>
  343. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object,System.Object,MaterialDesignThemes.Wpf.DialogOpenedEventHandler,MaterialDesignThemes.Wpf.DialogClosingEventHandler)">
  344. <summary>
  345. Shows a modal dialog. To use, a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
  346. </summary>
  347. <param name="content">Content to show (can be a control or view model).</param>
  348. <param name="dialogIdentifier"><see cref="P:MaterialDesignThemes.Wpf.DialogHost.Identifier"/> of the instance where the dialog should be shown. Typically this will match an identifer set in XAML. <c>null</c> is allowed.</param>
  349. <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
  350. <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
  351. <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand"/> command.</returns>
  352. </member>
  353. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Close(System.Object)">
  354. <summary>
  355. Close a modal dialog.
  356. </summary>
  357. <param name="dialogIdentifier"> of the instance where the dialog should be closed. Typically this will match an identifer set in XAML. </param>
  358. </member>
  359. <member name="M:MaterialDesignThemes.Wpf.DialogHost.Close(System.Object,System.Object)">
  360. <summary>
  361. Close a modal dialog.
  362. </summary>
  363. <param name="dialogIdentifier"> of the instance where the dialog should be closed. Typically this will match an identifer set in XAML. </param>
  364. <param name="parameter"> to provide to close handler</param>
  365. </member>
  366. <member name="M:MaterialDesignThemes.Wpf.DialogHost.GetDialogSession(System.Object)">
  367. <summary>
  368. Retrieve the current dialog session for a DialogHost
  369. </summary>
  370. <param name="dialogIdentifier">The identifier to use to retrieve the DialogHost</param>
  371. <returns>The DialogSession if one is in process, or null</returns>
  372. </member>
  373. <member name="M:MaterialDesignThemes.Wpf.DialogHost.IsDialogOpen(System.Object)">
  374. <summary>
  375. dialog instance exists
  376. </summary>
  377. <param name="dialogIdentifier">of the instance where the dialog should be closed. Typically this will match an identifer set in XAML.</param>
  378. <returns></returns>
  379. </member>
  380. <member name="P:MaterialDesignThemes.Wpf.DialogHost.Identifier">
  381. <summary>
  382. Identifier which is used in conjunction with <see cref="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object)"/> to determine where a dialog should be shown.
  383. </summary>
  384. </member>
  385. <member name="P:MaterialDesignThemes.Wpf.DialogHost.CurrentSession">
  386. <summary>
  387. Returns a DialogSession for the currently open dialog for managing it programmatically. If no dialog is open, CurrentSession will return null
  388. </summary>
  389. </member>
  390. <member name="P:MaterialDesignThemes.Wpf.DialogHost.OpenDialogCommandDataContextSource">
  391. <summary>
  392. Defines how a data context is sourced for a dialog if a <see cref="T:System.Windows.FrameworkElement"/>
  393. is passed as the command parameter when using <see cref="F:MaterialDesignThemes.Wpf.DialogHost.OpenDialogCommand"/>.
  394. </summary>
  395. </member>
  396. <member name="P:MaterialDesignThemes.Wpf.DialogHost.CloseOnClickAway">
  397. <summary>
  398. Indicates whether the dialog will close if the user clicks off the dialog, on the obscured background.
  399. </summary>
  400. </member>
  401. <member name="P:MaterialDesignThemes.Wpf.DialogHost.CloseOnClickAwayParameter">
  402. <summary>
  403. Parameter to provide to close handlers if an close due to click away is instigated.
  404. </summary>
  405. </member>
  406. <member name="P:MaterialDesignThemes.Wpf.DialogHost.SnackbarMessageQueue">
  407. <summary>
  408. Allows association of a snackbar, so that notifications can be paused whilst a dialog is being displayed.
  409. </summary>
  410. </member>
  411. <member name="P:MaterialDesignThemes.Wpf.DialogHost.DialogTheme">
  412. <summary>
  413. Set the theme (light/dark) for the dialog.
  414. </summary>
  415. </member>
  416. <member name="P:MaterialDesignThemes.Wpf.DialogHost.OverlayBackground">
  417. <summary>
  418. Represents the overlay brush that is used to dim the background behind the dialog
  419. </summary>
  420. </member>
  421. <member name="P:MaterialDesignThemes.Wpf.DialogHost.DialogBackground">
  422. <summary>
  423. Represents the brush for the Dialog's background
  424. </summary>
  425. </member>
  426. <member name="E:MaterialDesignThemes.Wpf.DialogHost.DialogOpened">
  427. <summary>
  428. Raised when a dialog is opened.
  429. </summary>
  430. </member>
  431. <member name="F:MaterialDesignThemes.Wpf.DialogHost.DialogOpenedAttachedProperty">
  432. <summary>
  433. Attached property which can be used on the <see cref="T:System.Windows.Controls.Button"/> which instigated the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.OpenDialogCommand"/> to process the event.
  434. </summary>
  435. </member>
  436. <member name="P:MaterialDesignThemes.Wpf.DialogHost.DialogOpenedCallback">
  437. <summary>
  438. Callback fired when the <see cref="E:MaterialDesignThemes.Wpf.DialogHost.DialogOpened"/> event is fired, allowing the event to be processed from a binding/view model.
  439. </summary>
  440. </member>
  441. <member name="E:MaterialDesignThemes.Wpf.DialogHost.DialogClosing">
  442. <summary>
  443. Raised just before a dialog is closed.
  444. </summary>
  445. </member>
  446. <member name="F:MaterialDesignThemes.Wpf.DialogHost.DialogClosingAttachedProperty">
  447. <summary>
  448. Attached property which can be used on the <see cref="T:System.Windows.Controls.Button"/> which instigated the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.OpenDialogCommand"/> to process the closing event.
  449. </summary>
  450. </member>
  451. <member name="P:MaterialDesignThemes.Wpf.DialogHost.DialogClosingCallback">
  452. <summary>
  453. Callback fired when the <see cref="E:MaterialDesignThemes.Wpf.DialogHost.DialogClosing"/> event is fired, allowing the event to be processed from a binding/view model.
  454. </summary>
  455. </member>
  456. <member name="M:MaterialDesignThemes.Wpf.DialogHost.FocusPopup">
  457. <summary>
  458. Attempts to focus the content of a popup.
  459. </summary>
  460. <returns>The popup content.</returns>
  461. </member>
  462. <member name="T:MaterialDesignThemes.Wpf.DialogHostEx">
  463. <summary>
  464. Helper extensions for showing dialogs.
  465. </summary>
  466. </member>
  467. <member name="M:MaterialDesignThemes.Wpf.DialogHostEx.ShowDialog(System.Windows.Window,System.Object)">
  468. <summary>
  469. Shows a dialog using the first found <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> in a given <see cref="T:System.Windows.Window"/>.
  470. </summary>
  471. <param name="window">Window on which the modal dialog should be displayed. Must contain a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>.</param>
  472. <param name="content"></param>
  473. <exception cref="T:System.InvalidOperationException">
  474. Thrown is a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is not found when conducting a depth first traversal of visual tree.
  475. </exception>
  476. <remarks>
  477. As a depth first traversal of the window's visual tree is performed, it is not safe to use this method in a situtation where a screen has multiple <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>s.
  478. </remarks>
  479. <returns></returns>
  480. </member>
  481. <member name="M:MaterialDesignThemes.Wpf.DialogHostEx.ShowDialog(System.Windows.Window,System.Object,MaterialDesignThemes.Wpf.DialogOpenedEventHandler)">
  482. <summary>
  483. Shows a dialog using the first found <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> in a given <see cref="T:System.Windows.Window"/>.
  484. </summary>
  485. <param name="window">Window on which the modal dialog should be displayed. Must contain a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>.</param>
  486. <param name="content">Content to show (can be a control or view model).</param>
  487. <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
  488. <exception cref="T:System.InvalidOperationException">
  489. Thrown is a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is not found when conducting a depth first traversal of visual tree.
  490. </exception>
  491. <remarks>
  492. As a depth first traversal of the window's visual tree is performed, it is not safe to use this method in a situtation where a screen has multiple <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>s.
  493. </remarks>
  494. <returns></returns>
  495. </member>
  496. <member name="M:MaterialDesignThemes.Wpf.DialogHostEx.ShowDialog(System.Windows.Window,System.Object,MaterialDesignThemes.Wpf.DialogClosingEventHandler)">
  497. <summary>
  498. Shows a dialog using the first found <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> in a given <see cref="T:System.Windows.Window"/>.
  499. </summary>
  500. <param name="window">Window on which the modal dialog should be displayed. Must contain a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>.</param>
  501. <param name="content">Content to show (can be a control or view model).</param>
  502. <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
  503. <exception cref="T:System.InvalidOperationException">
  504. Thrown is a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is not found when conducting a depth first traversal of visual tree.
  505. </exception>
  506. <remarks>
  507. As a depth first traversal of the window's visual tree is performed, it is not safe to use this method in a situtation where a screen has multiple <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>s.
  508. </remarks>
  509. <returns></returns>
  510. </member>
  511. <member name="M:MaterialDesignThemes.Wpf.DialogHostEx.ShowDialog(System.Windows.Window,System.Object,MaterialDesignThemes.Wpf.DialogOpenedEventHandler,MaterialDesignThemes.Wpf.DialogClosingEventHandler)">
  512. <summary>
  513. Shows a dialog using the first found <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> in a given <see cref="T:System.Windows.Window"/>.
  514. </summary>
  515. <param name="window">Window on which the modal dialog should be displayed. Must contain a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>.</param>
  516. <param name="content">Content to show (can be a control or view model).</param>
  517. <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
  518. <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
  519. <exception cref="T:System.InvalidOperationException">
  520. Thrown is a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is not found when conducting a depth first traversal of visual tree.
  521. </exception>
  522. <remarks>
  523. As a depth first traversal of the window's visual tree is performed, it is not safe to use this method in a situtation where a screen has multiple <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>s.
  524. </remarks>
  525. <returns></returns>
  526. </member>
  527. <member name="M:MaterialDesignThemes.Wpf.DialogHostEx.ShowDialog(System.Windows.DependencyObject,System.Object)">
  528. <summary>
  529. Shows a dialog using the parent/ancestor <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> of the a given <see cref="T:System.Windows.DependencyObject"/>.
  530. </summary>
  531. <param name="childDependencyObject">Dependency object which should be a visual child of a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>, where the dialog will be shown.</param>
  532. <param name="content">Content to show (can be a control or view model).</param>
  533. <exception cref="T:System.InvalidOperationException">
  534. Thrown is a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is not found when conducting a depth first traversal of visual tree.
  535. </exception>
  536. <returns></returns>
  537. </member>
  538. <member name="M:MaterialDesignThemes.Wpf.DialogHostEx.ShowDialog(System.Windows.DependencyObject,System.Object,MaterialDesignThemes.Wpf.DialogOpenedEventHandler)">
  539. <summary>
  540. Shows a dialog using the parent/ancestor <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> of the a given <see cref="T:System.Windows.DependencyObject"/>.
  541. </summary>
  542. <param name="childDependencyObject">Dependency object which should be a visual child of a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>, where the dialog will be shown.</param>
  543. <param name="content">Content to show (can be a control or view model).</param>
  544. <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
  545. <exception cref="T:System.InvalidOperationException">
  546. Thrown is a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is not found when conducting a depth first traversal of visual tree.
  547. </exception>
  548. <returns></returns>
  549. </member>
  550. <member name="M:MaterialDesignThemes.Wpf.DialogHostEx.ShowDialog(System.Windows.DependencyObject,System.Object,MaterialDesignThemes.Wpf.DialogClosingEventHandler)">
  551. <summary>
  552. Shows a dialog using the parent/ancestor <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> of the a given <see cref="T:System.Windows.DependencyObject"/>.
  553. </summary>
  554. <param name="childDependencyObject">Dependency object which should be a visual child of a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>, where the dialog will be shown.</param>
  555. <param name="content">Content to show (can be a control or view model).</param>
  556. <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
  557. <exception cref="T:System.InvalidOperationException">
  558. Thrown is a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is not found when conducting a depth first traversal of visual tree.
  559. </exception>
  560. <returns></returns>
  561. </member>
  562. <member name="M:MaterialDesignThemes.Wpf.DialogHostEx.ShowDialog(System.Windows.DependencyObject,System.Object,MaterialDesignThemes.Wpf.DialogOpenedEventHandler,MaterialDesignThemes.Wpf.DialogClosingEventHandler)">
  563. <summary>
  564. Shows a dialog using the parent/ancestor <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> of the a given <see cref="T:System.Windows.DependencyObject"/>.
  565. </summary>
  566. <param name="childDependencyObject">Dependency object which should be a visual child of a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/>, where the dialog will be shown.</param>
  567. <param name="content">Content to show (can be a control or view model).</param>
  568. <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
  569. <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
  570. <exception cref="T:System.InvalidOperationException">
  571. Thrown is a <see cref="T:MaterialDesignThemes.Wpf.DialogHost"/> is not found when conducting a depth first traversal of visual tree.
  572. </exception>
  573. <returns></returns>
  574. </member>
  575. <member name="P:MaterialDesignThemes.Wpf.DialogOpenedEventArgs.Session">
  576. <summary>
  577. Allows interation with the current dialog session.
  578. </summary>
  579. </member>
  580. <member name="T:MaterialDesignThemes.Wpf.DialogSession">
  581. <summary>
  582. Allows an open dialog to be managed. Use is only permitted during a single display operation.
  583. </summary>
  584. </member>
  585. <member name="P:MaterialDesignThemes.Wpf.DialogSession.IsEnded">
  586. <summary>
  587. Indicates if the dialog session has ended. Once ended no further method calls will be permitted.
  588. </summary>
  589. <remarks>
  590. Client code cannot set this directly, this is internally managed. To end the dialog session use <see cref="M:MaterialDesignThemes.Wpf.DialogSession.Close"/>.
  591. </remarks>
  592. </member>
  593. <member name="P:MaterialDesignThemes.Wpf.DialogSession.CloseParameter">
  594. <summary>
  595. The parameter passed to the <see cref="F:MaterialDesignThemes.Wpf.DialogHost.CloseDialogCommand" /> and return by <see cref="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object)"/>
  596. </summary>
  597. </member>
  598. <member name="P:MaterialDesignThemes.Wpf.DialogSession.Content">
  599. <summary>
  600. Gets the <see cref="P:MaterialDesignThemes.Wpf.DialogHost.DialogContent"/> which is currently displayed, so this could be a view model or a UI element.
  601. </summary>
  602. </member>
  603. <member name="M:MaterialDesignThemes.Wpf.DialogSession.UpdateContent(System.Object)">
  604. <summary>
  605. Update the current content in the dialog.
  606. </summary>
  607. <param name="content"></param>
  608. </member>
  609. <member name="M:MaterialDesignThemes.Wpf.DialogSession.Close">
  610. <summary>
  611. Closes the dialog.
  612. </summary>
  613. <exception cref="T:System.InvalidOperationException">Thrown if the dialog session has ended, or a close operation is currently in progress.</exception>
  614. </member>
  615. <member name="M:MaterialDesignThemes.Wpf.DialogSession.Close(System.Object)">
  616. <summary>
  617. Closes the dialog.
  618. </summary>
  619. <param name="parameter">Result parameter which will be returned in <see cref="P:MaterialDesignThemes.Wpf.DialogClosingEventArgs.Parameter"/> or from <see cref="M:MaterialDesignThemes.Wpf.DialogHost.Show(System.Object)"/> method.</param>
  620. <exception cref="T:System.InvalidOperationException">Thrown if the dialog session has ended, or a close operation is currently in progress.</exception>
  621. </member>
  622. <member name="M:MaterialDesignThemes.Wpf.DrawerClosingEventArgs.Cancel">
  623. <summary>
  624. Cancel the close.
  625. </summary>
  626. </member>
  627. <member name="P:MaterialDesignThemes.Wpf.DrawerClosingEventArgs.IsCancelled">
  628. <summary>
  629. Indicates if the close has already been cancelled.
  630. </summary>
  631. </member>
  632. <member name="P:MaterialDesignThemes.Wpf.DrawerClosingEventArgs.Dock">
  633. <summary>
  634. Allows interation with the current dialog session.
  635. </summary>
  636. </member>
  637. <member name="E:MaterialDesignThemes.Wpf.DrawerHost.DrawerOpened">
  638. <summary>
  639. Raised when a drawer is opened.
  640. </summary>
  641. </member>
  642. <member name="E:MaterialDesignThemes.Wpf.DrawerHost.DrawerClosing">
  643. <summary>
  644. Raised when a drawer is closing.
  645. </summary>
  646. </member>
  647. <member name="P:MaterialDesignThemes.Wpf.DrawerOpenedEventArgs.Dock">
  648. <summary>
  649. Allows interation with the current dialog session.
  650. </summary>
  651. </member>
  652. <member name="M:MaterialDesignThemes.Wpf.Extensions.GetVisualAncestry(System.Windows.DependencyObject)">
  653. <summary>
  654. Returns full visual ancestry, starting at the leaf.
  655. <para>If element is not of <see cref="T:System.Windows.Media.Visual"/> or <see cref="T:System.Windows.Media.Media3D.Visual3D"/> the
  656. logical ancestry is used.</para>
  657. </summary>
  658. <param name="leaf"></param>
  659. <returns></returns>
  660. </member>
  661. <member name="T:MaterialDesignThemes.Wpf.IHintProxy">
  662. <summary>
  663. This interface is the adapter from UiControl (like <see cref="T:System.Windows.Controls.TextBox"/>, <see cref="T:System.Windows.Controls.ComboBox"/> and others) to <see cref="T:MaterialDesignThemes.Wpf.SmartHint"/>
  664. <para/>
  665. You should implement this interface in order to use SmartHint for your own control.
  666. </summary>
  667. </member>
  668. <member name="M:MaterialDesignThemes.Wpf.IHintProxy.IsEmpty">
  669. <summary>
  670. Checks to see if the targeted control can be deemed as logically
  671. empty, even if not null, affecting the current hint display.
  672. </summary>
  673. <returns></returns>
  674. </member>
  675. <member name="M:MaterialDesignThemes.Wpf.IHintProxy.IsFocused">
  676. <summary>
  677. Targeted control has keyboard focus
  678. </summary>
  679. <returns></returns>
  680. </member>
  681. <member name="M:MaterialDesignThemes.Wpf.ISnackbarMessageQueue.Enqueue(System.Object)">
  682. <summary>
  683. Queues a notification message for display in a snackbar.
  684. </summary>
  685. <param name="content">Message.</param>
  686. </member>
  687. <member name="M:MaterialDesignThemes.Wpf.ISnackbarMessageQueue.Enqueue(System.Object,System.Object,System.Action)">
  688. <summary>
  689. Queues a notification message for display in a snackbar.
  690. </summary>
  691. <param name="content">Message.</param>
  692. <param name="actionContent">Content for the action button.</param>
  693. <param name="actionHandler">Call back to be executed if user clicks the action button.</param>
  694. </member>
  695. <member name="M:MaterialDesignThemes.Wpf.ISnackbarMessageQueue.Enqueue``1(System.Object,System.Object,System.Action{``0},``0)">
  696. <summary>
  697. Queues a notification message for display in a snackbar.
  698. </summary>
  699. <param name="content">Message.</param>
  700. <param name="actionContent">Content for the action button.</param>
  701. <param name="actionHandler">Call back to be executed if user clicks the action button.</param>
  702. <param name="actionArgument">Argument to pass to <paramref name="actionHandler"/>.</param>
  703. </member>
  704. <member name="M:MaterialDesignThemes.Wpf.ISnackbarMessageQueue.Enqueue(System.Object,System.Boolean)">
  705. <summary>
  706. Queues a notification message for display in a snackbar.
  707. </summary>
  708. <param name="content">Message.</param>
  709. <param name="neverConsiderToBeDuplicate">Subsequent, duplicate messages queued within a short time span will
  710. be discarded. To override this behaviour and ensure the message always gets displayed set to <c>true</c>.</param>
  711. </member>
  712. <member name="M:MaterialDesignThemes.Wpf.ISnackbarMessageQueue.Enqueue(System.Object,System.Object,System.Action,System.Boolean)">
  713. <summary>
  714. Queues a notification message for display in a snackbar.
  715. </summary>
  716. <param name="content">Message.</param>
  717. <param name="actionContent">Content for the action button.</param>
  718. <param name="actionHandler">Call back to be executed if user clicks the action button.</param>
  719. <param name="promote">The message will promoted to the front of the queue.</param>
  720. </member>
  721. <member name="M:MaterialDesignThemes.Wpf.ISnackbarMessageQueue.Enqueue``1(System.Object,System.Object,System.Action{``0},``0,System.Boolean)">
  722. <summary>
  723. Queues a notification message for display in a snackbar.
  724. </summary>
  725. <param name="content">Message.</param>
  726. <param name="actionContent">Content for the action button.</param>
  727. <param name="actionHandler">Call back to be executed if user clicks the action button.</param>
  728. <param name="actionArgument">Argument to pass to <paramref name="actionHandler"/>.</param>
  729. <param name="promote">The message will be promoted to the front of the queue and never considered to be a duplicate.</param>
  730. </member>
  731. <member name="M:MaterialDesignThemes.Wpf.ISnackbarMessageQueue.Enqueue``1(System.Object,System.Object,System.Action{``0},``0,System.Boolean,System.Boolean,System.Nullable{System.TimeSpan})">
  732. <summary>
  733. Queues a notification message for display in a snackbar.
  734. </summary>
  735. <param name="content">Message.</param>
  736. <param name="actionContent">Content for the action button.</param>
  737. <param name="actionHandler">Call back to be executed if user clicks the action button.</param>
  738. <param name="actionArgument">Argument to pass to <paramref name="actionHandler"/>.</param>
  739. <param name="promote">The message will be promoted to the front of the queue.</param>
  740. <param name="neverConsiderToBeDuplicate">The message will never be considered a duplicate.</param>
  741. <param name="durationOverride">Message show duration override.</param>
  742. </member>
  743. <member name="M:MaterialDesignThemes.Wpf.ISnackbarMessageQueue.Enqueue(System.Object,System.Object,System.Action{System.Object},System.Object,System.Boolean,System.Boolean,System.Nullable{System.TimeSpan})">
  744. <summary>
  745. Queues a notification message for display in a snackbar.
  746. </summary>
  747. <param name="content">Message.</param>
  748. <param name="actionContent">Content for the action button.</param>
  749. <param name="actionHandler">Call back to be executed if user clicks the action button.</param>
  750. <param name="actionArgument">Argument to pass to <paramref name="actionHandler"/>.</param>
  751. <param name="promote">The message will promoted to the front of the queue.</param>
  752. <param name="neverConsiderToBeDuplicate">The message will never be considered a duplicate.</param>
  753. <param name="durationOverride">Message show duration override.</param>
  754. </member>
  755. <member name="F:MaterialDesignThemes.Wpf.ListBoxItemAssist.CornerRadiusProperty">
  756. <summary>
  757. Controls the corner radius of the selection box.
  758. </summary>
  759. </member>
  760. <member name="T:MaterialDesignThemes.Wpf.MessageQueueExtension">
  761. <summary>
  762. Provides shorthand to initialise a new <see cref="T:MaterialDesignThemes.Wpf.SnackbarMessageQueue"/> for a <see cref="T:MaterialDesignThemes.Wpf.Snackbar"/>.
  763. </summary>
  764. </member>
  765. <member name="F:MaterialDesignThemes.Wpf.NavigationBarAssist.CornerRadiusProperty">
  766. <summary>
  767. Controls the corner radius of the selection box.
  768. </summary>
  769. </member>
  770. <member name="F:MaterialDesignThemes.Wpf.NavigationDrawerAssist.CornerRadiusProperty">
  771. <summary>
  772. Controls the corner radius of the selection box.
  773. </summary>
  774. </member>
  775. <member name="F:MaterialDesignThemes.Wpf.NavigationRailAssist.CornerRadiusProperty">
  776. <summary>
  777. Controls the corner radius of the selection box.
  778. </summary>
  779. </member>
  780. <member name="F:MaterialDesignThemes.Wpf.NavigationRailAssist.FloatingContentProperty">
  781. <summary>
  782. Floating Content (ex: Button) on navigation rail (optional)
  783. </summary>
  784. </member>
  785. <member name="P:MaterialDesignThemes.Wpf.PackIcon.Kind">
  786. <summary>
  787. Gets or sets the icon to display.
  788. </summary>
  789. </member>
  790. <member name="P:MaterialDesignThemes.Wpf.PackIcon.Data">
  791. <summary>
  792. Gets the icon path data for the current <see cref="P:MaterialDesignThemes.Wpf.PackIcon.Kind"/>.
  793. </summary>
  794. </member>
  795. <member name="T:MaterialDesignThemes.Wpf.PackIconDataFactory">
  796. ******************************************
  797. This code is auto generated. Do not amend.
  798. ******************************************
  799. </member>
  800. <member name="T:MaterialDesignThemes.Wpf.PackIconKind">
  801. ******************************************
  802. This code is auto generated. Do not amend.
  803. ******************************************
  804. <summary>
  805. List of available icons for use with <see cref="T:MaterialDesignThemes.Wpf.PackIcon" />.
  806. </summary>
  807. <remarks>
  808. All icons sourced from Material Design Icons Font - https://materialdesignicons.com/ - in accordance of
  809. https://github.com/Templarian/MaterialDesign/blob/master/LICENSE.
  810. </remarks>
  811. </member>
  812. <member name="T:MaterialDesignThemes.Wpf.Palette">
  813. <summary>
  814. Provides full information about a palette.
  815. </summary>
  816. </member>
  817. <member name="T:MaterialDesignThemes.Wpf.Plane3D">
  818. <summary>
  819. View a control on a 3D plane.
  820. </summary>
  821. <remarks>
  822. Taken from http://blogs.msdn.com/greg_schechter/archive/2007/10/26/enter-the-planerator-dead-simple-3d-in-wpf-with-a-stupid-name.aspx , Greg Schechter - Fall 2007
  823. </remarks>
  824. </member>
  825. <member name="T:MaterialDesignThemes.Wpf.Plane3D.LayoutInvalidationCatcher">
  826. <summary>
  827. Wrap this around a class that we want to catch the measure and arrange
  828. processes occuring on, and propagate to the parent Planerator, if any.
  829. Do this because layout invalidations don't flow up out of a
  830. Viewport2DVisual3D object.
  831. </summary>
  832. </member>
  833. <member name="T:MaterialDesignThemes.Wpf.PopupBoxPlacementMode">
  834. <summary>
  835. Defines how the <see cref="T:MaterialDesignThemes.Wpf.PopupBox"/> popup is aligned to the toggle part of the control.
  836. </summary>
  837. </member>
  838. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.BottomAndAlignLeftEdges">
  839. <summary>
  840. Display the popup below the toggle, and align the left edges.3
  841. </summary>
  842. </member>
  843. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.BottomAndAlignRightEdges">
  844. <summary>
  845. Display the popup below the toggle, and align the right edges.
  846. </summary>
  847. </member>
  848. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.BottomAndAlignCentres">
  849. <summary>
  850. Display the popup below the toggle, and align the center of the popup with the center of the toggle.
  851. </summary>
  852. </member>
  853. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.TopAndAlignLeftEdges">
  854. <summary>
  855. Display the popup above the toggle, and align the left edges.
  856. </summary>
  857. </member>
  858. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.TopAndAlignRightEdges">
  859. <summary>
  860. Display the popup above the toggle, and align the right edges.
  861. </summary>
  862. </member>
  863. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.TopAndAlignCentres">
  864. <summary>
  865. Display the popup above the toggle, and align the center of the popup with the center of the toggle.
  866. </summary>
  867. </member>
  868. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.LeftAndAlignTopEdges">
  869. <summary>
  870. Display the popup to the left of the toggle, and align the top edges.
  871. </summary>
  872. </member>
  873. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.LeftAndAlignBottomEdges">
  874. <summary>
  875. Display the popup to the left of the toggle, and align the bottom edges.
  876. </summary>
  877. </member>
  878. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.LeftAndAlignMiddles">
  879. <summary>
  880. Display the popup to the left of the toggle, and align the middles.
  881. </summary>
  882. </member>
  883. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.RightAndAlignTopEdges">
  884. <summary>
  885. Display the popup to the right of the toggle, and align the top edges.
  886. </summary>
  887. </member>
  888. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.RightAndAlignBottomEdges">
  889. <summary>
  890. Display the popup to the right of the toggle, and align the bottom edges.
  891. </summary>
  892. </member>
  893. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPlacementMode.RightAndAlignMiddles">
  894. <summary>
  895. Display the popup to the right of the toggle, and align the middles.
  896. </summary>
  897. </member>
  898. <member name="T:MaterialDesignThemes.Wpf.PopupBoxPopupMode">
  899. <summary>
  900. Defines what causes the <see cref="T:MaterialDesignThemes.Wpf.PopupBox"/> to open it's popup.
  901. </summary>
  902. </member>
  903. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPopupMode.Click">
  904. <summary>
  905. Open when the toggle button is clicked.
  906. </summary>
  907. </member>
  908. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPopupMode.MouseOver">
  909. <summary>
  910. Open when the mouse goes over the toggle button.
  911. </summary>
  912. </member>
  913. <member name="F:MaterialDesignThemes.Wpf.PopupBoxPopupMode.MouseOverEager">
  914. <summary>
  915. Open when the mouse goes over the toggle button, or the space in which the popup box would occupy should it be open.
  916. </summary>
  917. </member>
  918. <member name="T:MaterialDesignThemes.Wpf.PopupBox">
  919. <summary>
  920. Popup box, similar to a <see cref="T:System.Windows.Controls.ComboBox"/>, but allows more customizable content.
  921. </summary>
  922. </member>
  923. <member name="F:MaterialDesignThemes.Wpf.PopupBox.ClosePopupCommand">
  924. <summary>
  925. Routed command to be used inside of a popup content to close it.
  926. </summary>
  927. </member>
  928. <member name="P:MaterialDesignThemes.Wpf.PopupBox.ToggleContent">
  929. <summary>
  930. Content to display in the toggle button.
  931. </summary>
  932. </member>
  933. <member name="P:MaterialDesignThemes.Wpf.PopupBox.ToggleContentTemplate">
  934. <summary>
  935. Template for <see cref="P:MaterialDesignThemes.Wpf.PopupBox.ToggleContent"/>.
  936. </summary>
  937. </member>
  938. <member name="P:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContent">
  939. <summary>
  940. Content to display in the toggle when it's checked (when the popup is open). Optional; if not provided the <see cref="P:MaterialDesignThemes.Wpf.PopupBox.ToggleContent"/> is used.
  941. </summary>
  942. </member>
  943. <member name="P:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContentTemplate">
  944. <summary>
  945. Template for <see cref="P:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContent"/>.
  946. </summary>
  947. </member>
  948. <member name="P:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContentCommand">
  949. <summary>
  950. Command to execute if toggle is checked (popup is open) and <see cref="P:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContent"/> is set.
  951. </summary>
  952. </member>
  953. <member name="P:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContentCommandParameter">
  954. <summary>
  955. Command parameter to use in conjunction with <see cref="P:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContentCommand"/>.
  956. </summary>
  957. </member>
  958. <member name="P:MaterialDesignThemes.Wpf.PopupBox.PopupContent">
  959. <summary>
  960. Content to display in the content.
  961. </summary>
  962. </member>
  963. <member name="P:MaterialDesignThemes.Wpf.PopupBox.PopupContentTemplate">
  964. <summary>
  965. Popup content template.
  966. </summary>
  967. </member>
  968. <member name="P:MaterialDesignThemes.Wpf.PopupBox.IsPopupOpen">
  969. <summary>
  970. Gets or sets whether the popup is currently open.
  971. </summary>
  972. </member>
  973. <member name="P:MaterialDesignThemes.Wpf.PopupBox.StaysOpen">
  974. <summary>
  975. Indicates of the popup should stay open if a click occurs inside the popup.
  976. </summary>
  977. </member>
  978. <member name="P:MaterialDesignThemes.Wpf.PopupBox.PlacementMode">
  979. <summary>
  980. Gets or sets how the popup is aligned in relation to the toggle.
  981. </summary>
  982. </member>
  983. <member name="P:MaterialDesignThemes.Wpf.PopupBox.PopupMode">
  984. <summary>
  985. Gets or sets what trigger causes the popup to open.
  986. </summary>
  987. </member>
  988. <member name="F:MaterialDesignThemes.Wpf.PopupBox.UnfurlOrientationProperty">
  989. <summary>
  990. Get or sets how to unfurl controls when opening the popups. Only child elements of type <see cref="T:System.Windows.Controls.Primitives.ButtonBase"/> are animated.
  991. </summary>
  992. </member>
  993. <member name="P:MaterialDesignThemes.Wpf.PopupBox.UnfurlOrientation">
  994. <summary>
  995. Gets or sets how to unfurl controls when opening the popups. Only child elements of type <see cref="T:System.Windows.Controls.Primitives.ButtonBase"/> are animated.
  996. </summary>
  997. </member>
  998. <member name="F:MaterialDesignThemes.Wpf.PopupBox.PopupHorizontalOffsetProperty">
  999. <summary>
  1000. Get or sets the popup horizontal offset in relation to the button.
  1001. </summary>
  1002. </member>
  1003. <member name="P:MaterialDesignThemes.Wpf.PopupBox.PopupHorizontalOffset">
  1004. <summary>
  1005. Get or sets the popup horizontal offset in relation to the button.
  1006. </summary>
  1007. </member>
  1008. <member name="F:MaterialDesignThemes.Wpf.PopupBox.PopupVerticalOffsetProperty">
  1009. <summary>
  1010. Get or sets the popup vertical offset in relation to the button.
  1011. </summary>
  1012. </member>
  1013. <member name="P:MaterialDesignThemes.Wpf.PopupBox.PopupVerticalOffset">
  1014. <summary>
  1015. Get or sets the popup vertical offset in relation to the button.
  1016. </summary>
  1017. </member>
  1018. <member name="F:MaterialDesignThemes.Wpf.PopupBox.PopupUniformCornerRadiusProperty">
  1019. <summary>
  1020. Get or sets the corner radius of the popup card.
  1021. </summary>
  1022. </member>
  1023. <member name="P:MaterialDesignThemes.Wpf.PopupBox.PopupUniformCornerRadius">
  1024. <summary>
  1025. Get or sets the corner radius of the popup card.
  1026. </summary>
  1027. </member>
  1028. <member name="P:MaterialDesignThemes.Wpf.PopupBox.PopupPlacementMethod">
  1029. <summary>
  1030. Framework use. Provides the method used to position the popup.
  1031. </summary>
  1032. </member>
  1033. <member name="F:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContentClickEvent">
  1034. <summary>
  1035. Event raised when the checked toggled content (if set) is clicked.
  1036. </summary>
  1037. </member>
  1038. <member name="E:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContentClick">
  1039. <summary>
  1040. Event raised when the checked toggled content (if set) is clicked.
  1041. </summary>
  1042. </member>
  1043. <member name="M:MaterialDesignThemes.Wpf.PopupBox.OnToggleCheckedContentClick">
  1044. <summary>
  1045. Raises <see cref="F:MaterialDesignThemes.Wpf.PopupBox.ToggleCheckedContentClickEvent"/>.
  1046. </summary>
  1047. </member>
  1048. <member name="E:MaterialDesignThemes.Wpf.PopupBox.Opened">
  1049. <summary>
  1050. Raised when the popup is opened.
  1051. </summary>
  1052. </member>
  1053. <member name="M:MaterialDesignThemes.Wpf.PopupBox.OnOpened">
  1054. <summary>
  1055. Raises <see cref="F:MaterialDesignThemes.Wpf.PopupBox.OpenedEvent"/>.
  1056. </summary>
  1057. </member>
  1058. <member name="E:MaterialDesignThemes.Wpf.PopupBox.Closed">
  1059. <summary>
  1060. Raised when the popup is closed.
  1061. </summary>
  1062. </member>
  1063. <member name="M:MaterialDesignThemes.Wpf.PopupBox.OnClosed">
  1064. <summary>
  1065. Raises <see cref="F:MaterialDesignThemes.Wpf.PopupBox.ClosedEvent"/>.
  1066. </summary>
  1067. </member>
  1068. <member name="T:MaterialDesignThemes.Wpf.PopupEx">
  1069. <summary>
  1070. This class was initially based on work done in ControlzEx
  1071. https://github.com/ControlzEx/ControlzEx
  1072. This custom popup can be used by validation error templates or something else.
  1073. It provides some additional nice features:
  1074. - repositioning if host-window size or location changed
  1075. - repositioning if host-window gets maximized and vice versa
  1076. - it's only topmost if the host-window is activated
  1077. </summary>
  1078. </member>
  1079. <member name="P:MaterialDesignThemes.Wpf.PopupEx.CloseOnMouseLeftButtonDown">
  1080. <summary>
  1081. Gets/sets if the popup can be closed by left mouse button down.
  1082. </summary>
  1083. </member>
  1084. <member name="M:MaterialDesignThemes.Wpf.PopupEx.RefreshPosition">
  1085. <summary>
  1086. Causes the popup to update it's position according to it's current settings.
  1087. </summary>
  1088. </member>
  1089. <member name="T:MaterialDesignThemes.Wpf.PopupEx.SWP">
  1090. <summary>
  1091. SetWindowPos options
  1092. </summary>
  1093. </member>
  1094. <member name="T:MaterialDesignThemes.Wpf.Properties.Resources">
  1095. <summary>
  1096. A strongly-typed resource class, for looking up localized strings, etc.
  1097. </summary>
  1098. </member>
  1099. <member name="P:MaterialDesignThemes.Wpf.Properties.Resources.ResourceManager">
  1100. <summary>
  1101. Returns the cached ResourceManager instance used by this class.
  1102. </summary>
  1103. </member>
  1104. <member name="P:MaterialDesignThemes.Wpf.Properties.Resources.Culture">
  1105. <summary>
  1106. Overrides the current thread's CurrentUICulture property for all
  1107. resource lookups using this strongly typed resource class.
  1108. </summary>
  1109. </member>
  1110. <member name="T:MaterialDesignThemes.Wpf.RatingBar">
  1111. <summary>
  1112. A custom control implementing a rating bar.
  1113. The icon aka content may be set as a DataTemplate via the ButtonContentTemplate property.
  1114. </summary>
  1115. </member>
  1116. <member name="F:MaterialDesignThemes.Wpf.Ripple.RecognizesAccessKeyProperty">
  1117. <summary>
  1118. The DependencyProperty for the RecognizesAccessKey property.
  1119. Default Value: false
  1120. </summary>
  1121. </member>
  1122. <member name="P:MaterialDesignThemes.Wpf.Ripple.RecognizesAccessKey">
  1123. <summary>
  1124. Determine if Ripple should use AccessText in its style
  1125. </summary>
  1126. </member>
  1127. <member name="F:MaterialDesignThemes.Wpf.RippleAssist.IsCenteredProperty">
  1128. <summary>
  1129. Set to <c>true</c> to cause the ripple to originate from the centre of the
  1130. content. Otherwise the effect will originate from the mouse down position.
  1131. </summary>
  1132. </member>
  1133. <member name="M:MaterialDesignThemes.Wpf.RippleAssist.SetIsCentered(System.Windows.DependencyObject,System.Boolean)">
  1134. <summary>
  1135. Set to <c>true</c> to cause the ripple to originate from the centre of the
  1136. content. Otherwise the effect will originate from the mouse down position.
  1137. </summary>
  1138. <param name="element"></param>
  1139. <param name="value"></param>
  1140. </member>
  1141. <member name="M:MaterialDesignThemes.Wpf.RippleAssist.GetIsCentered(System.Windows.DependencyObject)">
  1142. <summary>
  1143. Set to <c>true</c> to cause the ripple to originate from the centre of the
  1144. content. Otherwise the effect will originate from the mouse down position.
  1145. </summary>
  1146. <param name="element"></param>
  1147. </member>
  1148. <member name="F:MaterialDesignThemes.Wpf.RippleAssist.IsDisabledProperty">
  1149. <summary>
  1150. Set to <c>True</c> to disable ripple effect
  1151. </summary>
  1152. </member>
  1153. <member name="M:MaterialDesignThemes.Wpf.RippleAssist.SetIsDisabled(System.Windows.DependencyObject,System.Boolean)">
  1154. <summary>
  1155. Set to <c>True</c> to disable ripple effect
  1156. </summary>
  1157. <param name="element"></param>
  1158. <param name="value"></param>
  1159. </member>
  1160. <member name="M:MaterialDesignThemes.Wpf.RippleAssist.GetIsDisabled(System.Windows.DependencyObject)">
  1161. <summary>
  1162. Set to <c>True</c> to disable ripple effect
  1163. </summary>
  1164. <param name="element"></param>
  1165. </member>
  1166. <member name="T:MaterialDesignThemes.Wpf.ScaleHost">
  1167. <summary>
  1168. Internal use only.
  1169. </summary>
  1170. </member>
  1171. <member name="T:MaterialDesignThemes.Wpf.Screen">
  1172. <summary>
  1173. Represents a display device or multiple display devices on a single system.
  1174. Based on http://referencesource.microsoft.com/#System.Windows.Forms/winforms/Managed/System/WinForms/Screen.cs
  1175. </summary>
  1176. </member>
  1177. <member name="F:MaterialDesignThemes.Wpf.Screen._workingArea">
  1178. <summary>
  1179. Available working area on the screen. This excludes taskbars and other
  1180. docked windows.
  1181. </summary>
  1182. </member>
  1183. <member name="P:MaterialDesignThemes.Wpf.Screen.AllScreens">
  1184. <summary>
  1185. Gets an array of all of the displays on the system.
  1186. </summary>
  1187. </member>
  1188. <member name="P:MaterialDesignThemes.Wpf.Screen.Bounds">
  1189. <summary>
  1190. Gets the bounds of the display.
  1191. </summary>
  1192. </member>
  1193. <member name="P:MaterialDesignThemes.Wpf.Screen.DeviceName">
  1194. <summary>
  1195. Gets the device name associated with a display.
  1196. </summary>
  1197. </member>
  1198. <member name="P:MaterialDesignThemes.Wpf.Screen.Primary">
  1199. <summary>
  1200. Gets a value indicating whether a particular display is the primary device.
  1201. </summary>
  1202. </member>
  1203. <member name="P:MaterialDesignThemes.Wpf.Screen.PrimaryScreen">
  1204. <summary>
  1205. Gets the primary display.
  1206. </summary>
  1207. </member>
  1208. <member name="P:MaterialDesignThemes.Wpf.Screen.WorkingArea">
  1209. <summary>
  1210. Gets the working area of the screen.
  1211. </summary>
  1212. </member>
  1213. <member name="P:MaterialDesignThemes.Wpf.Screen.DesktopChangedCount">
  1214. <summary>
  1215. Screen instances call this property to determine
  1216. if their WorkingArea cache needs to be invalidated.
  1217. </summary>
  1218. </member>
  1219. <member name="M:MaterialDesignThemes.Wpf.Screen.Equals(System.Object)">
  1220. <summary>
  1221. Specifies a value that indicates whether the specified object is equal to this one.
  1222. </summary>
  1223. </member>
  1224. <member name="M:MaterialDesignThemes.Wpf.Screen.FromPoint(System.Windows.Point)">
  1225. <summary>
  1226. Retrieves a <see cref='T:MaterialDesignThemes.Wpf.Screen'/> for the monitor that contains the specified point.
  1227. </summary>
  1228. </member>
  1229. <member name="M:MaterialDesignThemes.Wpf.Screen.FromRect(System.Windows.Rect)">
  1230. <summary>
  1231. Retrieves a <see cref='T:MaterialDesignThemes.Wpf.Screen'/> for the monitor that contains the largest region of the Rect.
  1232. </summary>
  1233. </member>
  1234. <member name="M:MaterialDesignThemes.Wpf.Screen.GetWorkingArea(System.Windows.Point)">
  1235. <summary>
  1236. Retrieves the working area for the monitor that is closest to the specified point.
  1237. </summary>
  1238. </member>
  1239. <member name="M:MaterialDesignThemes.Wpf.Screen.GetWorkingArea(System.Windows.Rect)">
  1240. <summary>
  1241. Retrieves the working area for the monitor that contains the largest region of the specified Rect.
  1242. </summary>
  1243. </member>
  1244. <member name="M:MaterialDesignThemes.Wpf.Screen.GetBounds(System.Windows.Point)">
  1245. <summary>
  1246. Retrieves the bounds of the monitor that is closest to the specified point.
  1247. </summary>
  1248. </member>
  1249. <member name="M:MaterialDesignThemes.Wpf.Screen.GetBounds(System.Windows.Rect)">
  1250. <summary>
  1251. Retrieves the bounds of the monitor that contains the largest region of the specified Rect.
  1252. </summary>
  1253. </member>
  1254. <member name="M:MaterialDesignThemes.Wpf.Screen.GetHashCode">
  1255. <summary>
  1256. Computes and retrieves a hash code for an object.
  1257. </summary>
  1258. </member>
  1259. <member name="M:MaterialDesignThemes.Wpf.Screen.OnDisplaySettingsChanging(System.Object,System.EventArgs)">
  1260. <summary>
  1261. Called by the SystemEvents class when our display settings are
  1262. changing. We cache screen information and at this point we must
  1263. invalidate our cache.
  1264. </summary>
  1265. </member>
  1266. <member name="M:MaterialDesignThemes.Wpf.Screen.OnUserPreferenceChanged(System.Object,Microsoft.Win32.UserPreferenceChangedEventArgs)">
  1267. <summary>
  1268. Called by the SystemEvents class when our display settings have
  1269. changed. Here, we increment a static counter that Screen instances
  1270. can check against to invalidate their cache.
  1271. </summary>
  1272. </member>
  1273. <member name="M:MaterialDesignThemes.Wpf.Screen.ToString">
  1274. <summary>
  1275. Retrieves a string representing this object.
  1276. </summary>
  1277. </member>
  1278. <member name="T:MaterialDesignThemes.Wpf.SmartHint">
  1279. <summary>
  1280. A control that implement placeholder behavior. Can work as a simple placeholder either as a floating hint, see <see cref="P:MaterialDesignThemes.Wpf.SmartHint.UseFloating"/> property.
  1281. <para/>
  1282. To set a target control you should set the HintProxy property. Use the <see cref="P:MaterialDesignThemes.Wpf.Converters.HintProxyFabricConverter.Instance"/> converter which converts a control into the IHintProxy interface.
  1283. </summary>
  1284. </member>
  1285. <member name="T:MaterialDesignThemes.Wpf.Snackbar">
  1286. <summary>
  1287. Implements a <see cref="T:MaterialDesignThemes.Wpf.Snackbar"/> inspired by the Material Design specs (https://material.google.com/components/snackbars-toasts.html).
  1288. </summary>
  1289. </member>
  1290. <member name="T:MaterialDesignThemes.Wpf.SnackbarMessage">
  1291. <summary>
  1292. Defines the content of a message within a <see cref="T:MaterialDesignThemes.Wpf.Snackbar"/>. Primary content should be set via the
  1293. standard <see cref="!:SnackbarMessage.Content"/> property. Where an action is allowed, content
  1294. can be provided in <see cref="P:MaterialDesignThemes.Wpf.SnackbarMessage.ActionContent"/>. Standard button properties are
  1295. provided for actions, includiing <see cref="P:MaterialDesignThemes.Wpf.SnackbarMessage.ActionCommand"/>.
  1296. </summary>
  1297. </member>
  1298. <member name="F:MaterialDesignThemes.Wpf.SnackbarMessage.ActionClickEvent">
  1299. <summary>
  1300. Event correspond to left mouse button click on the Action button.
  1301. </summary>
  1302. </member>
  1303. <member name="E:MaterialDesignThemes.Wpf.SnackbarMessage.ActionClick">
  1304. <summary>
  1305. Add / Remove ActionClickEvent handler
  1306. </summary>
  1307. </member>
  1308. <member name="F:MaterialDesignThemes.Wpf.SnackbarMessage.InlineActionButtonMaxHeightProperty">
  1309. <summary>
  1310. Maximum total height of snackbar for the action button to be inlined.
  1311. <para>
  1312. Default value (<c>55</c>) is between single line message (<c>48</c>) and two lined snackbar-message (<c>66</c>)
  1313. because tolerance is required (see <a href="https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/issues/1812">issue</a>)
  1314. </para>
  1315. </summary>
  1316. </member>
  1317. <member name="F:MaterialDesignThemes.Wpf.SnackbarMessageQueue._closeSnackbarEvent">
  1318. <summary>
  1319. If set, the active snackbar will be closed.
  1320. </summary>
  1321. <remarks>
  1322. Available only while the snackbar is displayed.
  1323. Should be locked by <see cref="F:MaterialDesignThemes.Wpf.SnackbarMessageQueue._snackbarMessagesLock"/>.
  1324. </remarks>
  1325. </member>
  1326. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueue.Dispatcher">
  1327. <summary>
  1328. Gets the <see cref="T:System.Windows.Threading.Dispatcher"/> this <see cref="T:MaterialDesignThemes.Wpf.SnackbarMessageQueue"/> is associated with.
  1329. </summary>
  1330. </member>
  1331. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueue.DiscardDuplicates">
  1332. <summary>
  1333. Gets or sets a value that indicates whether this message queue displays messages without discarding duplicates.
  1334. False to show every message even if there are duplicates.
  1335. </summary>
  1336. </member>
  1337. <member name="M:MaterialDesignThemes.Wpf.SnackbarMessageQueue.Clear">
  1338. <summary>
  1339. Clear the message queue and close the active snackbar.
  1340. This method can be called from any thread.
  1341. </summary>
  1342. </member>
  1343. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueueItem.Content">
  1344. <summary>
  1345. The content to be displayed
  1346. </summary>
  1347. </member>
  1348. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueueItem.Duration">
  1349. <summary>
  1350. Message show duration.
  1351. </summary>
  1352. </member>
  1353. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueueItem.ActionContent">
  1354. <summary>
  1355. The content for the action button on the snackbar
  1356. </summary>
  1357. </member>
  1358. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueueItem.ActionHandler">
  1359. <summary>
  1360. Handler to be invoked when the action button is clicked
  1361. </summary>
  1362. </member>
  1363. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueueItem.ActionArgument">
  1364. <summary>
  1365. The argument to pass to the <see cref="P:MaterialDesignThemes.Wpf.SnackbarMessageQueueItem.ActionHandler"/> delegate.
  1366. </summary>
  1367. </member>
  1368. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueueItem.IsPromoted">
  1369. <summary>
  1370. Promote the message, pushing it in front of any message that is not promoted.
  1371. </summary>
  1372. </member>
  1373. <member name="P:MaterialDesignThemes.Wpf.SnackbarMessageQueueItem.AlwaysShow">
  1374. <summary>
  1375. Always show this message, even if it's a duplicate
  1376. </summary>
  1377. </member>
  1378. <member name="F:MaterialDesignThemes.Wpf.TextBlockAssist.AutoToolTipProperty">
  1379. <summary>
  1380. Automatic ToolTip for TextBlock or TextBoxBase if containing text is trimmed
  1381. </summary>
  1382. </member>
  1383. <member name="T:MaterialDesignThemes.Wpf.TextFieldAssist">
  1384. <summary>
  1385. Helper properties for working with text fields.
  1386. </summary>
  1387. </member>
  1388. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.TextBoxViewMarginProperty">
  1389. <summary>
  1390. The text box view margin property
  1391. </summary>
  1392. </member>
  1393. <member name="M:MaterialDesignThemes.Wpf.TextFieldAssist.SetTextBoxViewMargin(System.Windows.DependencyObject,System.Windows.Thickness)">
  1394. <summary>
  1395. Sets the text box view margin.
  1396. </summary>
  1397. <param name="element">The element.</param>
  1398. <param name="value">The value.</param>
  1399. </member>
  1400. <member name="M:MaterialDesignThemes.Wpf.TextFieldAssist.GetTextBoxViewMargin(System.Windows.DependencyObject)">
  1401. <summary>
  1402. Gets the text box view margin.
  1403. </summary>
  1404. <param name="element">The element.</param>
  1405. <returns>
  1406. The <see cref="T:System.Windows.Thickness" />.
  1407. </returns>
  1408. </member>
  1409. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.DecorationVisibilityProperty">
  1410. <summary>
  1411. Controls the visibility of the underline decoration.
  1412. </summary>
  1413. </member>
  1414. <member name="M:MaterialDesignThemes.Wpf.TextFieldAssist.SetDecorationVisibility(System.Windows.DependencyObject,System.Windows.Visibility)">
  1415. <summary>
  1416. Controls the visibility of the underline decoration.
  1417. </summary>
  1418. </member>
  1419. <member name="M:MaterialDesignThemes.Wpf.TextFieldAssist.GetDecorationVisibility(System.Windows.DependencyObject)">
  1420. <summary>
  1421. Controls the visibility of the underline decoration.
  1422. </summary>
  1423. <param name="element"></param>
  1424. <returns></returns>
  1425. </member>
  1426. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.UnderlineBrushProperty">
  1427. <summary>
  1428. The attached WPF property for getting or setting the <see cref="T:System.Windows.Media.Brush"/> value for an underline decoration.
  1429. </summary>
  1430. </member>
  1431. <member name="M:MaterialDesignThemes.Wpf.TextFieldAssist.SetUnderlineBrush(System.Windows.DependencyObject,System.Windows.Media.Brush)">
  1432. <summary>
  1433. Sets the <see cref="T:System.Windows.Media.Brush"/> used for underline decoration.
  1434. </summary>
  1435. <param name="element"></param>
  1436. <param name="value"></param>
  1437. </member>
  1438. <member name="M:MaterialDesignThemes.Wpf.TextFieldAssist.GetUnderlineBrush(System.Windows.DependencyObject)">
  1439. <summary>
  1440. Gets the <see cref="T:System.Windows.Media.Brush"/> used for underline decoration.
  1441. </summary>
  1442. <param name="element"></param>
  1443. </member>
  1444. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.HasFilledTextFieldProperty">
  1445. <summary>
  1446. Controls the visbility of the text field box.
  1447. </summary>
  1448. </member>
  1449. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.HasOutlinedTextFieldProperty">
  1450. <summary>
  1451. Controls the visibility of the text field area box.
  1452. </summary>
  1453. </member>
  1454. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.TextFieldCornerRadiusProperty">
  1455. <summary>
  1456. Controls the corner radius of the surrounding box.
  1457. </summary>
  1458. </member>
  1459. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.UnderlineCornerRadiusProperty">
  1460. <summary>
  1461. Controls the corner radius of the bottom line of the surrounding box.
  1462. </summary>
  1463. </member>
  1464. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.NewSpecHighlightingEnabledProperty">
  1465. <summary>
  1466. Controls the highlighting style of a text box.
  1467. </summary>
  1468. </member>
  1469. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.RippleOnFocusEnabledProperty">
  1470. <summary>
  1471. Enables a ripple effect on focusing the text box.
  1472. </summary>
  1473. </member>
  1474. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.IncludeSpellingSuggestionsProperty">
  1475. <summary>
  1476. Automatically inserts spelling suggestions into the text box context menu.
  1477. </summary>
  1478. </member>
  1479. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.SuffixTextProperty">
  1480. <summary>
  1481. SuffixText dependency property
  1482. </summary>
  1483. </member>
  1484. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.PrefixTextProperty">
  1485. <summary>
  1486. PrefixText dependency property
  1487. </summary>
  1488. </member>
  1489. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.HasClearButtonProperty">
  1490. <summary>
  1491. Controls the visbility of the clear button.
  1492. </summary>
  1493. </member>
  1494. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.HasLeadingIconProperty">
  1495. <summary>
  1496. Controls visibility of the leading icon
  1497. </summary>
  1498. </member>
  1499. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.LeadingIconProperty">
  1500. <summary>
  1501. Controls the leading icon
  1502. </summary>
  1503. </member>
  1504. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.LeadingIconSizeProperty">
  1505. <summary>
  1506. Controls the size of the leading icon
  1507. </summary>
  1508. </member>
  1509. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.HasTrailingIconProperty">
  1510. <summary>
  1511. Controls visibility of the trailing icon
  1512. </summary>
  1513. </member>
  1514. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.TrailingIconProperty">
  1515. <summary>
  1516. Controls the trailing icon
  1517. </summary>
  1518. </member>
  1519. <member name="F:MaterialDesignThemes.Wpf.TextFieldAssist.TrailingIconSizeProperty">
  1520. <summary>
  1521. Controls the size of the trailing icon
  1522. </summary>
  1523. </member>
  1524. <member name="M:MaterialDesignThemes.Wpf.TextFieldAssist.ApplyTextBoxViewMargin(System.Windows.Controls.Control,System.Windows.Thickness)">
  1525. <summary>
  1526. Applies the text box view margin.
  1527. </summary>
  1528. <param name="textBox">The text box.</param>
  1529. <param name="margin">The margin.</param>
  1530. </member>
  1531. <member name="M:MaterialDesignThemes.Wpf.TextFieldAssist.TextBoxViewMarginPropertyChangedCallback(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  1532. <summary>
  1533. The text box view margin property changed callback.
  1534. </summary>
  1535. <param name="dependencyObject">The dependency object.</param>
  1536. <param name="dependencyPropertyChangedEventArgs">The dependency property changed event args.</param>
  1537. </member>
  1538. <member name="M:MaterialDesignThemes.Wpf.Theme.GetSystemTheme">
  1539. <summary>
  1540. Get the current Windows theme.
  1541. Based on ControlzEx
  1542. https://github.com/ControlzEx/ControlzEx/blob/48230bb023c588e1b7eb86ea83f7ddf7d25be735/src/ControlzEx/Theming/WindowsThemeHelper.cs#L19
  1543. </summary>
  1544. <returns></returns>
  1545. </member>
  1546. <member name="M:MaterialDesignThemes.Wpf.TimePicker.OnGotFocus(System.Object,System.Windows.RoutedEventArgs)">
  1547. <summary>
  1548. Called when this element gets focus.
  1549. </summary>
  1550. </member>
  1551. <member name="M:MaterialDesignThemes.Wpf.TimePicker.OnIsDropDownOpenChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
  1552. <summary>
  1553. IsDropDownOpenProperty property changed handler.
  1554. </summary>
  1555. <param name="d">DatePicker that changed its IsDropDownOpen.</param>
  1556. <param name="e">DependencyPropertyChangedEventArgs.</param>
  1557. </member>
  1558. <member name="P:MaterialDesignThemes.Wpf.TimePicker.IsInvalidTextAllowed">
  1559. <summary>
  1560. Set to true to stop invalid text reverting back to previous valid value. Useful in cases where you
  1561. want to display validation messages and allow the user to correct the data without it reverting.
  1562. </summary>
  1563. </member>
  1564. <member name="P:MaterialDesignThemes.Wpf.TimePicker.WithSeconds">
  1565. <summary>
  1566. Set to true to display seconds in the time and allow the user to select seconds.
  1567. </summary>
  1568. </member>
  1569. <member name="M:MaterialDesignThemes.Wpf.ToggleButtonAssist.GetHasOnContent(System.Windows.DependencyObject)">
  1570. <summary>
  1571. Framework use only.
  1572. </summary>
  1573. <param name="element"></param>
  1574. <returns></returns>
  1575. </member>
  1576. <member name="F:MaterialDesignThemes.Wpf.ToggleButtonAssist.OnContentProperty">
  1577. <summary>
  1578. Allows on (IsChecked) content to be provided on supporting <see cref="T:System.Windows.Controls.Primitives.ToggleButton"/> styles.
  1579. </summary>
  1580. </member>
  1581. <member name="M:MaterialDesignThemes.Wpf.ToggleButtonAssist.SetOnContent(System.Windows.DependencyObject,System.Object)">
  1582. <summary>
  1583. Allows on (IsChecked) content to be provided on supporting <see cref="T:System.Windows.Controls.Primitives.ToggleButton"/> styles.
  1584. </summary>
  1585. <param name="element"></param>
  1586. <param name="value"></param>
  1587. </member>
  1588. <member name="M:MaterialDesignThemes.Wpf.ToggleButtonAssist.GetOnContent(System.Windows.DependencyObject)">
  1589. <summary>
  1590. Allows on (IsChecked) content to be provided on supporting <see cref="T:System.Windows.Controls.Primitives.ToggleButton"/> styles.
  1591. </summary>
  1592. </member>
  1593. <member name="F:MaterialDesignThemes.Wpf.ToggleButtonAssist.OnContentTemplateProperty">
  1594. <summary>
  1595. Allows an on (IsChecked) template to be provided on supporting <see cref="T:System.Windows.Controls.Primitives.ToggleButton"/> styles.
  1596. </summary>
  1597. </member>
  1598. <member name="M:MaterialDesignThemes.Wpf.ToggleButtonAssist.SetOnContentTemplate(System.Windows.DependencyObject,System.Windows.DataTemplate)">
  1599. <summary>
  1600. Allows an on (IsChecked) template to be provided on supporting <see cref="T:System.Windows.Controls.Primitives.ToggleButton"/> styles.
  1601. </summary>
  1602. </member>
  1603. <member name="M:MaterialDesignThemes.Wpf.ToggleButtonAssist.GetOnContentTemplate(System.Windows.DependencyObject)">
  1604. <summary>
  1605. Allows an on (IsChecked) template to be provided on supporting <see cref="T:System.Windows.Controls.Primitives.ToggleButton"/> styles.
  1606. </summary>
  1607. </member>
  1608. <member name="T:MaterialDesignThemes.Wpf.TransitionAssist">
  1609. <summary>
  1610. Allows transitions to be disabled where supported.
  1611. </summary>
  1612. </member>
  1613. <member name="F:MaterialDesignThemes.Wpf.TransitionAssist.DisableTransitionsProperty">
  1614. <summary>
  1615. Allows transitions to be disabled where supported. Note this is an inheritable property.
  1616. </summary>
  1617. </member>
  1618. <member name="M:MaterialDesignThemes.Wpf.TransitionAssist.SetDisableTransitions(System.Windows.DependencyObject,System.Boolean)">
  1619. <summary>
  1620. Allows transitions to be disabled where supported. Note this is an inheritable property.
  1621. </summary>
  1622. </member>
  1623. <member name="M:MaterialDesignThemes.Wpf.TransitionAssist.GetDisableTransitions(System.Windows.DependencyObject)">
  1624. <summary>
  1625. Allows transitions to be disabled where supported. Note this is an inheritable property.
  1626. </summary>
  1627. </member>
  1628. <member name="P:MaterialDesignThemes.Wpf.Transitions.FadeWipe.Duration">
  1629. <summary>
  1630. Duration of the animation
  1631. </summary>
  1632. </member>
  1633. <member name="T:MaterialDesignThemes.Wpf.Transitions.IndexedItemOffsetMultiplierExtension">
  1634. <summary>
  1635. Multiplies a time span unit by the index of an item in a list.
  1636. </summary>
  1637. <remarks>
  1638. Example usage is for a <see cref="T:MaterialDesignThemes.Wpf.Transitions.TransitioningContent"/> to have a <see cref="P:MaterialDesignThemes.Wpf.Transitions.TransitionEffect.OffsetTime" />
  1639. time delayed according to position in a list, so cascading animations can occur.
  1640. </remarks>
  1641. </member>
  1642. <member name="P:MaterialDesignThemes.Wpf.Transitions.SlideWipe.Direction">
  1643. <summary>
  1644. Direction of the slide wipe
  1645. </summary>
  1646. </member>
  1647. <member name="P:MaterialDesignThemes.Wpf.Transitions.SlideWipe.Duration">
  1648. <summary>
  1649. Duration of the animation
  1650. </summary>
  1651. </member>
  1652. <member name="T:MaterialDesignThemes.Wpf.Transitions.Transitioner">
  1653. <summary>
  1654. The transitioner provides an easy way to move between content with a default in-place circular transition.
  1655. </summary>
  1656. </member>
  1657. <member name="F:MaterialDesignThemes.Wpf.Transitions.Transitioner.MoveNextCommand">
  1658. <summary>
  1659. Causes the the next slide to be displayed (affectively increments <see cref="P:System.Windows.Controls.Primitives.Selector.SelectedIndex"/>).
  1660. </summary>
  1661. </member>
  1662. <member name="F:MaterialDesignThemes.Wpf.Transitions.Transitioner.MovePreviousCommand">
  1663. <summary>
  1664. Causes the the previous slide to be displayed (affectively decrements <see cref="P:System.Windows.Controls.Primitives.Selector.SelectedIndex"/>).
  1665. </summary>
  1666. </member>
  1667. <member name="F:MaterialDesignThemes.Wpf.Transitions.Transitioner.MoveFirstCommand">
  1668. <summary>
  1669. Moves to the first slide.
  1670. </summary>
  1671. </member>
  1672. <member name="F:MaterialDesignThemes.Wpf.Transitions.Transitioner.MoveLastCommand">
  1673. <summary>
  1674. Moves to the last slide.
  1675. </summary>
  1676. </member>
  1677. <member name="P:MaterialDesignThemes.Wpf.Transitions.Transitioner.AutoApplyTransitionOrigins">
  1678. <summary>
  1679. If enabled, transition origins will be applied to wipes, according to where a transition was triggered from. For example, the mouse point where a user clicks a button.
  1680. </summary>
  1681. </member>
  1682. <member name="T:MaterialDesignThemes.Wpf.Transitions.TransitionerSlide">
  1683. <summary>
  1684. Content control to host the content of an individual page within a <see cref="T:MaterialDesignThemes.Wpf.Transitions.Transitioner"/>.
  1685. </summary>
  1686. </member>
  1687. <member name="T:MaterialDesignThemes.Wpf.Transitions.TransitioningContent">
  1688. <summary>
  1689. Content control to enable easier transitions.
  1690. </summary>
  1691. </member>
  1692. <member name="P:MaterialDesignThemes.Wpf.Transitions.TransitioningContentBase.OpeningEffect">
  1693. <summary>
  1694. Gets or sets the transition to run when the content is loaded and made visible.
  1695. </summary>
  1696. </member>
  1697. <member name="P:MaterialDesignThemes.Wpf.Transitions.TransitioningContentBase.OpeningEffectsOffset">
  1698. <summary>
  1699. Delay offset to be applied to all opening effect transitions.
  1700. </summary>
  1701. </member>
  1702. <member name="P:MaterialDesignThemes.Wpf.Transitions.TransitioningContentBase.OpeningEffects">
  1703. <summary>
  1704. Allows multiple transition effects to be combined and run upon the content loading or being made visible.
  1705. </summary>
  1706. </member>
  1707. <member name="F:MaterialDesignThemes.Wpf.TreeViewAssist.AdditionalTemplateProperty">
  1708. <summary>
  1709. Allows additional rendering for each tree node, outside of the rippled part of the node which responsds to user selection.
  1710. </summary>
  1711. <remarks>
  1712. The content to be rendered is the same of the <see cref="T:System.Windows.Controls.TreeViewItem"/>; i.e the Header property, or
  1713. some other content such as a view model, typically when using a <see cref="T:System.Windows.HierarchicalDataTemplate"/>.
  1714. </remarks>
  1715. </member>
  1716. <member name="M:MaterialDesignThemes.Wpf.TreeViewAssist.SetAdditionalTemplate(System.Windows.DependencyObject,System.Windows.DataTemplate)">
  1717. <summary>
  1718. Sets the additional template.
  1719. </summary>
  1720. <param name="element">The element.</param>
  1721. <param name="value">The value.</param>
  1722. </member>
  1723. <member name="M:MaterialDesignThemes.Wpf.TreeViewAssist.GetAdditionalTemplate(System.Windows.DependencyObject)">
  1724. <summary>
  1725. Gets the additional template.
  1726. </summary>
  1727. <param name="element">The element.</param>
  1728. <returns>
  1729. The <see cref="T:System.Windows.DataTemplate" />.
  1730. </returns>
  1731. </member>
  1732. <member name="F:MaterialDesignThemes.Wpf.TreeViewAssist.AdditionalTemplateSelectorProperty">
  1733. <summary>
  1734. Allows additional rendering for each tree node, outside of the rippled part of the node which responsds to user selection.
  1735. </summary>
  1736. <remarks>
  1737. The content to be rendered is the same of the <see cref="T:System.Windows.Controls.TreeViewItem"/>; i.e the Header property, or
  1738. some other content such as a view model, typically when using a <see cref="T:System.Windows.HierarchicalDataTemplate"/>.
  1739. </remarks>
  1740. </member>
  1741. <member name="M:MaterialDesignThemes.Wpf.TreeViewAssist.SetAdditionalTemplateSelector(System.Windows.DependencyObject,System.Windows.Controls.DataTemplateSelector)">
  1742. <summary>
  1743. Sets the additional template selector.
  1744. </summary>
  1745. <param name="element">The element.</param>
  1746. <param name="value">The value.</param>
  1747. </member>
  1748. <member name="M:MaterialDesignThemes.Wpf.TreeViewAssist.GetAdditionalTemplateSelector(System.Windows.DependencyObject)">
  1749. <summary>
  1750. Gets the additional template selector.
  1751. </summary>
  1752. <param name="element">The element.</param>
  1753. <returns>
  1754. The <see cref="T:System.Windows.Controls.DataTemplateSelector" />.
  1755. </returns>
  1756. </member>
  1757. <member name="F:MaterialDesignThemes.Wpf.TreeViewAssist.SuppressAdditionalTemplate">
  1758. <summary>
  1759. To be used at <see cref="T:System.Windows.Controls.TreeViewItem"/> level, or to be returned by <see cref="!:AdditionalTemplateSelector"/>
  1760. implementors when the additional template associated with a tree should not be used.
  1761. </summary>
  1762. </member>
  1763. <member name="T:MaterialDesignThemes.Wpf.UIElementExtensions">
  1764. <summary>
  1765. This is a simple utility to add and remove a single adorner to an element
  1766. since there is no built-in way to do that in xaml.
  1767. <a href="https://docs.microsoft.com/en-us/dotnet/framework/wpf/controls/adorners-overview">See here</a>
  1768. </summary>
  1769. </member>
  1770. <member name="T:MaterialDesignThemes.Wpf.Underline">
  1771. <summary>
  1772. </summary>
  1773. </member>
  1774. <member name="F:MaterialDesignThemes.Wpf.ValidationAssist.OnlyShowOnFocusProperty">
  1775. <summary>
  1776. The hint property
  1777. </summary>
  1778. </member>
  1779. <member name="F:MaterialDesignThemes.Wpf.ValidationAssist.UsePopupProperty">
  1780. <summary>
  1781. The hint property
  1782. </summary>
  1783. </member>
  1784. <member name="F:MaterialDesignThemes.Wpf.ValidationAssist.PopupPlacementProperty">
  1785. <summary>
  1786. The hint property
  1787. </summary>
  1788. </member>
  1789. <member name="F:MaterialDesignThemes.Wpf.ValidationAssist.SuppressProperty">
  1790. <summary>
  1791. Framework use only.
  1792. </summary>
  1793. </member>
  1794. <member name="M:MaterialDesignThemes.Wpf.ValidationAssist.SetSuppress(System.Windows.DependencyObject,System.Boolean)">
  1795. <summary>
  1796. Framework use only.
  1797. </summary>
  1798. <param name="element"></param>
  1799. <param name="value"></param>
  1800. </member>
  1801. <member name="M:MaterialDesignThemes.Wpf.ValidationAssist.GetSuppress(System.Windows.DependencyObject)">
  1802. <summary>
  1803. Framework use only.
  1804. </summary>
  1805. </member>
  1806. </members>
  1807. </doc>