Volume Control
Application-specific hotkeys for Windows
VolumeControl.WPF.Converters Namespace Reference

Classes

class  ArrayHasItemsBooleanConverter
 Converts from an arbitrary array of items to a boolean value that depends on whether the array is empty or not.
When the array is empty, returns false; when the array has at least one item, returns true. More...
 
class  BooleanInverter
 Binding converter for boolean types that negates the expression. More...
 
class  BoolToBrushConverter
 Converts between bool and given Brush instances. More...
 
class  BoolToThicknessConverter
 Converts from bool types to thickness types. More...
 
class  BoolToCheckVisibleConverter
 Converts from bool types to visibility types. More...
 
class  ConverterChain
 Any number of IValueConverter objects that are used in assembly-line fashion on a given value. More...
 
class  EnumHasFlagConverter
 Converts from an enum value to bool depending on the flag value specified as a converter parameter. More...
 
class  ListHasItemsBooleanConverter
 Converts from an arbitrary list of items to a boolean value that depends on whether the list is empty or not.
When the list is empty, returns false; when the list has at least one item, returns true. More...
 
class  MultiBindingBooleanConverter
 IMultiValueConverter for multiple boolean inputs that accepts and returns a list of booleans.
Any non-boolean types are converted using Convert.ToBoolean(object). More...
 
class  NullToBooleanConverter
 Converts from any object type to bool depending on whether or not that object is null. More...
 
class  SquaredCornerRadiusConverter
 This converter removes specific rounded corners depending on the Squared property.
Converts from CornerRadius to CornerRadius. More...
 
class  TagDoubleConverter
 

Enumerations

enum class  Corner {
  None = 0 , TopLeft = 1 , TopRight = 2 , BottomLeft = 4 ,
  BottomRight = 8 , Top = TopLeft | TopRight , Bottom = BottomLeft | BottomRight , Left = TopLeft | BottomLeft ,
  Right = TopRight | BottomRight , All = Top | Bottom
}
 Specifies the corners of a 2D square. More...
 

Enumeration Type Documentation

◆ Corner

Specifies the corners of a 2D square.

Enumerator
None 

Nothing.

TopLeft 

The top-left corner.

TopRight 

The top-right corner.

BottomLeft 

The bottom-left corner.

BottomRight 

The bottom-right corner.

Top 

The top left and top right corners.

Bottom 

The bottom left and bottom right corners.

Left 

The top left and bottom left corners.

Right 

The top right and bottom right corners.

All 

All corners.