Bunifu.UI.WinForms.BunifuSnackbar This class is primarily used to apply a neat and decent drop-shadow effect to any Windows Form using the method . Summary description for Win32. Provides a collection of methods that extend the .NET Color class. Interface for all types we can perform transitions on. Each type (e.g. int, double, Color) that we can perform a transition on needs to have its own class that implements this interface. These classes tell the transition system how to act on objects of that type. Returns the Type that the instance is managing. Returns a deep copy of the object passed in. (In particular this is needed for types that are objects.) Returns an object holding the value between the start and end corresponding to the percentage passed in. (Note: the percentage can be less than 0% or greater than 100%.) Called by the Transition framework when its timer ticks to pass in the time (in ms) since the transition started. You should return (in an out parameter) the percentage movement towards the destination value for the time passed in. Note: this does not need to be a smooth transition from 0% to 100%. You can overshoot with values greater than 100% or undershoot if you need to (for example, to have some form of "elasticity"). The percentage should be returned as (for example) 0.1 for 10%. You should return (in an out parameter) whether the transition has completed. (This may not be at the same time as the percentage has moved to 100%.) Class that manages transitions for Color properties. For these we need to transition the R, G, B and A sub-properties independently. Returns the type we are managing. Returns a copy of the color object passed in. Creates an intermediate value for the colors depending on the percentage passed in. Manages transitions for double properties. Returns the type managed by this class. Returns a copy of the double passed in. Returns the value between start and end for the percentage passed in. Returns the type we're managing. Returns a copy of the float passed in. Returns the interpolated value for the percentage passed in. Manages transitions for int properties. Returns the type we are managing. Returns a copy of the int passed in. Returns the value between the start and end for the percentage passed in. Manages transitions for strings. This doesn't make as much sense as transitions on other types, but I like the way it looks! Returns the type we're managing. Returns a copy of the string passed in. Returns an "interpolated" string. Lets you perform animated transitions of properties on arbitrary objects. These will often be transitions of UI properties, for example an animated fade-in of a UI object, or an animated move of a UI object from one position to another. Each transition can simulataneously change multiple properties, including properties across multiple objects. Example transition ------------------ a. Transition t = new Transition(new TransitionMethod_Linear(500)); b. t.add(form1, "Width", 500); c. t.add(form1, "BackColor", Color.Red); d. t.run(); Line a: Creates a new transition. You specify the transition method. Lines b. and c: Set the destination values of the properties you are animating. Line d: Starts the transition. Transition methods ------------------ TransitionMethod objects specify how the transition is made. Examples include linear transition, ease-in-ease-out and so on. Different transition methods may need different parameters. You should register all managed-types here. Args passed with the TransitionCompletedEvent. Event raised when the transition hass completed. Creates and immediately runs a transition on the property passed in. Sets the property passed in to the initial value passed in, then creates and immediately runs a transition on it. Creates a TransitionChain and runs it. Constructor. You pass in the object that holds the properties that you are performing transitions on. Adds a property that should be animated as part of this transition. Starts the transition. Property that returns a list of information about each property managed by this transition. We remove the property with the info passed in from the transition. Called when the transition timer ticks. Sets a property on the object passed in to the value passed in. This method invokes itself on the GUI thread if the property is being invoked on a GUI object. Returns true if the object passed in is a Control and is disposed or in the process of disposing. (If this is the case, we don't want to make any changes to its properties.) Registers a transition-type. We hold them in a map. Runs the next transition in the list. Called when the transition we have just run has completed. Constructor. The percentage of elapsed time, expressed as (for example) 75 for 75%. The value of the animated properties at the EndTime. This is the percentage movement of the properties between their start and end values. This should be expressed as (for example) 75 for 75%. The interpolation method to use when moving between the previous value and the current one. This class is responsible for running transitions. It holds the timer that triggers transaction animation. This class is a singleton. We manage the transaction timer here so that we can have a single timer across all transactions. If each transaction has its own timer, this creates one thread for each transaction, and this can lead to too many threads in an application. This class essentially just manages the timer for the transitions. It calls back into the running transitions, which do the actual work of the transition. Singleton's getInstance method. You register a transition with the manager here. This will start to run the transition as the manager's timer ticks. Checks if any existing transitions are acting on the same properties as the transition passed in. If so, we remove the duplicated properties from the older transitions. Finds any properties in the old-transition that are also in the new one, and removes them from the old one. Private constructor (for singleton). Called when the timer ticks. Called when a transition has completed. Manages transitions under constant acceleration from a standing start. Constructor. You pass in the time that the transition will take (in milliseconds). Works out the percentage completed given the time passed in. This uses the formula: s = ut + 1/2at^2 The initial velocity is 0, and the acceleration to get to 1.0 at t=1.0 is 2, so the formula just becomes: s = t^2 This transition bounces the property to a destination value and back to the original value. It is accelerated to the destination and then decelerated back as if being dropped with gravity and bouncing back against gravity. Constructor. You pass in the total time taken for the bounce. This transition animates with an exponential decay. This has a damping effect similar to the motion of a needle on an electomagnetically controlled dial. Constructor. You pass in the time that the transition will take (in milliseconds). Manages a transition starting from a high speed and decelerating to zero by the end of the transition. Constructor. You pass in the time that the transition will take (in milliseconds). Works out the percentage completed given the time passed in. This uses the formula: s = ut + 1/2at^2 The initial velocity is 2, and the acceleration to get to 1.0 at t=1.0 is -2, so the formula becomes: s = t(2-t) Manages an ease-in-ease-out transition. This accelerates during the first half of the transition, and then decelerates during the second half. Constructor. You pass in the time that the transition will take (in milliseconds). Works out the percentage completed given the time passed in. This uses the formula: s = ut + 1/2at^2 We accelerate as at the rate needed (a=4) to get to 0.5 at t=0.5, and then decelerate at the same rate to end up at 1.0 at t=1.0. This transition type 'flashes' the properties a specified number of times, ending up by reverting them to their initial values. You specify the number of bounces and the length of each bounce. You specify the number of bounces and the time taken for each bounce. This class manages a linear transition. The percentage complete for the transition increases linearly with time. Constructor. You pass in the time (in milliseconds) that the transition will take. We return the percentage completed. This transition bounces the property to a destination value and back to the original value. It is decelerated to the destination and then acclerated back as if being thrown against gravity and then descending back with gravity. Constructor. You pass in the total time taken for the bounce. This class allows you to create user-defined transition types. You specify these as a list of TransitionElements. Each of these defines: End time , End value, Interpolation method For example, say you want to make a bouncing effect with a decay: EndTime% EndValue% Interpolation -------- --------- ------------- 50 100 Acceleration 75 50 Deceleration 85 100 Acceleration 91 75 Deceleration 95 100 Acceleration 98 90 Deceleration 100 100 Acceleration The time values are expressed as a percentage of the overall transition time. This means that you can create a user-defined transition-type and then use it for transitions of different lengths. The values are percentages of the values between the start and end values of the properties being animated in the transitions. 0% is the start value and 100% is the end value. The interpolation is one of the values from the InterpolationMethod enum. So the example above accelerates to the destination (as if under gravity) by t=50%, then bounces back up to half the initial height by t=75%, slowing down (as if against gravity) before falling down again and bouncing to decreasing heights each time. Constructor. Constructor. You pass in the list of TransitionElements and the total time (in milliseconds) for the transition. Sets up the transitions. Called to find the value for the movement of properties for the time passed in. Returns the element info for the time-fraction passed in. A class holding static utility functions. Returns the value of the property passed in. Sets the value of the property passed in. Returns a value between d1 and d2 for the percentage passed in. Returns a value betweeen i1 and i2 for the percentage passed in. Returns a value betweeen f1 and f2 for the percentage passed in. Converts a fraction representing linear time to a fraction representing the distance traveled under an ease-in-ease-out transition. Converts a fraction representing linear time to a fraction representing the distance traveled under a constant acceleration transition. Converts a fraction representing linear time to a fraction representing the distance traveled under a constant deceleration transition. Fires the event passed in in a thread-safe way. This method loops through the targets of the event and invokes each in turn. If the target supports ISychronizeInvoke (such as forms or controls) and is set to run on a different thread, then we call BeginInvoke to marshal the event to the target thread. If the target does not support this interface (such as most non-form classes) or we are on the same thread as the target, then the event is fired on the same thread as this is called from. Provides button-like capabilities and image manipulation features when working with images. Provides flip-orientation options for images. Flip image to normal view. Flip image horizontally. Flip image vertically. Provides the various supported image-states generated from the applied Image. Returns the normal image. Returns a totally blurred image. Returns a medially blurred image. Returns a partially blurred image. Gets or sets the distance between the container and the underlying image. Gets or sets the distance between the container and the underlying image. Gets or sets the angle of rotation for the image. Please provide a value between 0 and 360. Gets or sets the time in milliseconds the zooming animation takes when active. Flips the image to any given orientation. Supports both Vertical and Horizontal orientation-flipping options. Gets or sets the image displayed in the image button. (This property has been deprecated as of version 1.6.0.0. Please use the property 'ActiveImage' instead.) Gets or sets the image to be applied whenever the image button is active or hovered onto. Gets or sets the image to be applied whenever the image button is active or hovered onto. Gets or sets the default image size. Gets or sets the maximum size of the image when hovered onto or active. This defaults to the standard set size of the control. Allows you to easily get or set some ToolTip information to be displayed to the user on mouse-hovering over the control. Gets or sets a value indicating whether the control will show cursor changes during mouse-hover events. Sets a value indicating whether the 'ActiveImage' will be applied on mouse-hover. Gets or sets a value indicating whether zooming is enabled. Gets or sets a value indicating whether animations are enabled. Automatically fades the image when inactive. Gets a value indicating whether the image button is currently zoomed-in. Gets or sets a value indicating whether the size markers displayed at the control's top-area will be visible during design-time. Gets or sets a value indicating whether borders will be viewed for the image applied during design-time. Overrides the CreateParams method to stop flickering issues by setting the "WS_EX_COMPOSITED" (0x02000000) style. Gets or sets the path or URL for the image to display in the Image Button. Gets or sets a value indicating whether an image is loaded synchronously. Gets or sets the image displayed in the Image Button when the main image is loading. Gets or sets the image displayed in the Image Button when an error occurs during the image-loading process or if the image load is canceled. Calculates the correct image-size as per the applied state. Renders the required image as per the applied state. The image-state-type to be used. Renders the required image as per the applied state. The image-state to be used. Zooms in the image to the preset size. Zooms out the image to its default size. Rotates the image to a set angle of rotation. Allow animation the rotation event? If yes, the rotation will be animated from one angle to another. The angle of rotation to apply. Please provide a value between 0 and 360. The rotating animation speed in milliseconds to apply. Default speed is 500(ms). Sets the ImageLocation to the specified URL and displays the image indicated. The path for the image to display in the Image Button. Exceptions: Thrown if url is null or an empty string. Thrown if url refers to an image on the Web that cannot be accessed. Thrown if url refers to a file that is not an image. Thrown if url refers to a file that does not exist. Displays the image specified by the ImageLocation property of the Image Button. Exceptions: Thrown if ImageLocation is null or an empty string. Loads the image asynchronously. Loads the image at the specified location, asynchronously. The path for the image to display in the Image Button. Cancels an asynchronous image load. Determines whether the hosting process is in design-mode. Required designer variable. Clean up any resources being used. true if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Image-rendering extensions class for Bunifu Image Button. Provides flip-orientation options for image containers. Flip image to normal setting. Flip image horizontally. Flip image vertically. Rotates an image container to a specified angle or degree. The graphics object to be used. The angle of rotation. The final width of the image. The final height of the image. Flips an image container to a specified position. The graphics object to be used. The flip orientation. The final width of the image. The final height of the image. Flips an image container to a specified position. The graphics object to be used. The flip orientation. Flips an image container to a specified position without an angle of rotation. The flip orientation. Provides a highly customizable button with improved styling options and additional feature improvements. Creates a new control. Provides various styles for customizing the border. Defaults to a solid border style. Defaults to a dash border style. Defaults to a dotted border style. Defines various states in a Button's activity cycle. Denotes the Button's idle state. Denotes the Button's mouse-hover state. Denotes the Button's mouse-press or click state. Denotes the Button's disabled state. [Internal] Defines various states in a control's activity cycle. There is no activity. The control is in mouse-hover state. The control is in mouse-click or press state. The control is disabled. Gets or sets a value indicating whether the button will be automatically toggled to receive or release focus when clicked. When set to true, the button's and will be used to generate colors for the various states supported. Specifies whether the Button will automatically size it's with to fit its contents. Use property to set the padding (edges' distance). Gets or sets a value indicating whether the Button will provide a visual cue when focused. Gets or sets the Button's animation speed (in milliseconds) when moving from one state to another. Gets or sets the Button's padding for both the left and the right icon. Gets or sets the Button's left icon margin. Gets or sets the Button's left text margin. Gets or sets the Button's border radius when idle. Gets or sets the button's border thickness. Sets how dark or light the button's color will be whenever a mouse-hover event has occurred. Sets how dark or light the button's color will be whenever a mouse-click event has occurred. Gets or sets the Button's right icon cursor. Gets or sets the Button's left icon cursor. Gets or sets the Button's left icon when idle. Gets or sets the Button's right icon when idle. Gets or sets the Button's default font. Gets or sets the text associated with this control. Gets or sets the Button's border color when disabled. Gets or sets the Button's background color when disabled. Gets or sets the Button's foreground color when disabled. Gets or sets the Button's border color when idle/inactive. Gets or sets the Button's background/fill color when idle. Gets or sets the Button's foreground color. Gets or sets the Button's idle state design. Gets or sets the Button's hover state design. Gets or sets the Button's pressed state design. Gets or sets the Button's border style. Gets or sets the state to use when the Button contains focus while the cursor is away. Gets or sets the returned by the Button. Gets or sets the list of border edges that will be customized whenever the border radius is applied. Gets the left icon. Gets the right icon. Gets or sets a value indicating whether other states will automatically use the idle state's border-radius and border-thickness. Gets or sets a value indicating whether the Bunifu button control is the default button. Gets a value indicating whether the button has been clicked. Gets or sets the Button's disabled state design. Gets or sets the text associated with this control. Gets or sets the Button's left text margin. Gets the preferred Button's height. Gets or sets the Button's background color. [Internal] Gets or sets the initial Button's background color. Gets or sets the Button's background image. Gets or sets the Button's text alignment. Provides options for use when creating a list of properties for use when defining a control's various activity states. Gets or sets the control's border radius. Gets or sets the control's border thickness. Gets or sets the control's foreground color. Gets or sets the control's background/fill color. Gets or sets the control's border color. Gets or sets the control's right icon-image. Gets or sets the control's left icon-image. Gets or sets the control's border style. Returns a string containing the object's properties and their values. Includes the list of available border edges or dimensions that can be customized or excluded when styling controls. Creates a new instance of the class. Gets or sets a value indicating whether the top-left edge will be included. Gets or sets a value indicating whether the top-right edge will be included. Gets or sets a value indicating whether the bottom-left edge will be included. Gets or sets a value indicating whether the bottom-right edge will be included. Returns a containing the list of properties and their applied values. Gets the list of created control parameters. Gets the Button's current activity state. Redraws the control's layout. Loop redraws using a timer? Sets a specified state to the button. The state to apply. Generates a 'Click' event for the button. Resets the control's temporary values to their defaults. Resets the button's current visual state to another state. Resets the control's temporary color values to their defaults. Notifies the Button whether it is the default button so that it can adjust its appearance accordingly. Generates colors for the the various states supported using the button's and properties. Redraw the control's surface? Occurs when the Button's left icon is clicked. Occurs when the Button's right icon is clicked. Initializes a new instance of the class. Implementation of this abstract method creates Smart Tag items, associates their targets, and collects them into a list. Required designer variable. Clean up any resources being used. true if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Provides enhanced and customizable form-docking capabilities to borderless Windows Forms. Creates a new Bunifu Form Dock component. Provides a general list of window-states available for use in borderless Forms displayed on-screen. This mimics the standard enumeration but has been tailored for handling borderless forms. A normal window. A maximized window. A minimized window. Provides a general list of window-states available for use in borderless Forms displayed on-screen. This mimics the standard enumeration but has been tailored for handling borderless forms. A normal window. A maximized window. A minimized window. Provides a list of available docking indicators visible when dragging forms on-screen. No indicator is shown. The left dock indicator. The right dock indicator. The top-left dock indicator. The top-right dock indicator. The full-screen dock indicator. The bottom-left dock indicator. The bottom-right dock indicator. Provides a list of supported form-docking positions. No dock position applied. The left dock position. The right dock position. Tge top-left dock position. The top-right dock position. The full-screen dock position. The bottom-left dock position. The bottom-right dock position. When set to true, a white region that is drawn at the bottom of the parent form will be hidden; however, when set to false, this region will be exposed at runtime. Gets or sets Form border options that can be used to add and style borders on the parent form. Gets or sets the docking options to be used in the parent form. Gets or sets the list of options for selecting and managing any control that is set as the parent form's Title Bar. Gets or sets a value indicating whether the parent form will allow the standard Windows docking keys to be supported at runtime. Gets or sets a value indicating whether the parent form will be draggable. Gets or sets a value indicating whether the parent form will have a drop-shadow along its borders.. Gets or sets a value indicating whether the parent form will be resizable when borderless. Gets or sets a value indicating whether the parent form's opacity or transparency will be changed whenever it's being dragged on screen. Gets or sets a value indicating whether cursor-changes will be provided when about to dock the parent form. Gets or sets a value indicating whether the docking indicators will be previewed before the parent form is docked. Gets or sets the color of the docking indicators. Gets or sets the opacity or transparency of the docking indicators. Gets or sets the opacity or transparency of the parent form when dragging. Gets or sets the window-state for the form. This mimics the standard enumeration but has been tailored for handling borderless forms. Gets or sets the window-state for the form. This mimics the standard enumeration but has been tailored for handling borderless forms. Gets or sets the container control within the parent form. In most cases, this refers and results to the parent form. Gets or sets the container control as the parent form. Overrides the ISite functionality, getting the main or parent container control in the Form. This is overriden to get the component's host or parent form. Adds a bottom Line Separator to the attached Parent Form. Sets the background color of the Separator. Sets the height of the Separator. Allow docking the Separator to the bottom area? (Disabled by default) If allowed, the Separator will be docked to the bottom-most area of the Parent Form; else, it will be anchored to the bottom-most area. Both options however perform the same way at runtime. Subscribes any control specified to the drag event operations performed on the parent form. The control to be subscribed to the drag events. If the control is a part of the Title Bar section, set this parameter to true in order for the control to be subscribed to the setting. Subscribes an array of controls specified to the drag event operations performed on the parent form. An array of controls to be subscribed to the drag events. If the controls are part of the Title Bar section, set this parameter to true in order for the controls to be subscribed to the setting. Unsubscribes any control attached to the drag event operations performed on the parent form. The control previously attached to the drag events. If the control was a part of the Title Bar section, set this parameter to true in order for the control to be unsubscribed to the setting. Unsubscribes an array of controls attached to the drag event operations performed on the parent form. An array of controls previously attached to the drag events. If the controls were part of the Title Bar section, set this parameter to true in order for the controls to be unsubscribed to the setting. Checks if the parent form is in the normal state. or Checks if the parent form is docked to the left. or Checks if the parent form is docked to the top-left. or Checks if the parent form is docked to the bottom-left. or Checks if the parent form is docked to the right. or Checks if the parent form is docked to the ltop-right. or Checks if the parent form is docked to the bottom-right. or Expands the parent form to fit the current screen dimensions. Docks the parent form to the left area of the screen. Docks the parent form to the top-left corner of the screen. Docks the parent form to the bottom-left corner of the screen. Docks the parent form to the right area of the screen. Docks the parent form to the top-right corner of the screen. Docks the parent form to the bottom-right corner of the screen. Indicates that the parent form is about to be docked to full-screen mode. Indicates that the parent form is about to be docked to the left screen area. Indicates that the parent form is about to be docked to the top-left screen area. Indicates that the parent form is about to be docked to the bottom-left screen area. Indicates that the parent form is about to be docked to the right screen area. Indicates that the parent form is about to be docked to the top-right screen area. Indicates that the parent form is about to be docked to the bottom-right screen area. Indicates that the parent form is about to be reverted to its normal or original dimensions as per its size and location. Hides any visual cues that may have been displayed when docking the parent form. Displays any visual cues based on the area the parent form is about to be docked to. Adds borders to the parent form. Masks the bottom margin added to the Parent Form when a drop-shadow is provided. Creates a colored Bitmap Image. The to be applied. The of the Bitmap. Determines whether the hosting process is in design-mode. This method takes the user through a quick set of first-time options available to use in order to guide them on the component's usage. Raises the parent form's "OnLoad" event. The sender control. Provides data for the parent form's "OnLoad" event. Raises the parent form's "OnResizeEnd" event. The sender control. Provides data for the parent form's "OnResizeEnd" event. Raises the component's "KeyDown" event. The sender control. Provides data for the control's "KeyDown" event. Occurs whenever the parent form is being dragged. Occurs whenever the property has been changed. Provides data for the event. Provides data for the event. The position of the cursor on the screen. Gets the current position of the cursor. Gets the indicator that is currently being shown as the parent form is being dragged. Provides data for the event. Provides data for the event. The currently docked position of the parent form. Gets the docked position the parent form is on. Raises the component's "MouseUp" event. Use this to attach any control's "MouseUp" event to this "OnMouseUp" event. The sender control. Provides data for the control's "MouseUp" event. Raises the component's "MouseMove" event. Use this to attach any control's "MouseMove" event to this "OnMouseMove" event. The sender control. Provides data for the control's "MouseMove" event. Raises the component's "MouseDown" event. Use this to attach any control's "MouseDown" event to this "OnMouseDown" event. The sender control. Provides data for the control's "MouseDown" event. Raises the attached Title Bar's "MouseDoubleClick" event. Use this to attach any control's "MouseDoubleClick" event to this "MouseDoubleClick" event. The sender control. Provides data for the control's "MouseDoubleClick" event. Initializes a new instance of the class. Implementation of this abstract method creates Smart Tag items, associates their targets, and collects them into a list. Required designer variable. Clean up any resources being used. true if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Attaches, accesses and extends any Windows Form specified outside its own class. Creates a window handle to any specified Windows Form. The parent form to handle. Allow the parent form to resize? Gets or sets the Bunifu Form Dock instance to be accessed and used. Provides a list of supported docking options in Windows Forms. Creates a new Docking Options class. Gets or sets a value indicating whether the parent form can be docked to all supported screen areas. Gets or sets a value indicating whether the parent form can be docked to the left screen area. Gets or sets a value indicating whether the parent form can be docked to the right screen area. Gets or sets a value indicating whether the parent form can be docked to fill the screen's dimensions. Gets or sets a value indicating whether the parent form can be docked to the top-left screen area. Gets or sets a value indicating whether the parent form can be docked to the top-right screen area. Gets or sets a value indicating whether the parent form can be docked to the bottom-left screen area. Gets or sets a value indicating whether the parent form can be docked to the bottom-right screen area. Returns a containing the list of docking options provided and their applied statuses separated by semi-colons. Provides a list of options for selecting and managing any control that is to be used as the parent form's Title Bar. Creates a new Title Bar Options class. Gets or sets the Bunifu Form Dock instance to be accessed and used. Gets or sets the control to be used as the parent form's Title Bar. Gets or sets a value indicating whether the Title Bar control will expand the parent form once a user double-clicks on it. Gets or sets a value indicating whether the docking indicators will inherit the Title Bar's background color. Gets or sets a value indicating whether the Title Bar control will be allowed to drag the parent form at runtime. Returns a containing the list of Title Bar options provided and their applied property values separated by semi-colons. Provides a list of options for customizing a borderless Form's border regions. Creates a new Form Border Options class. Returns a containing the list of Form Border Options provided and their applied property values separated by semi-colons. Provides a list of options for customizing a borderless Form's single border region. Returns a containing the list of Form Border Options provided and their applied property values separated by semi-colons. Required designer variable. Clean up any resources being used. true if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Required designer variable. Clean up any resources being used. true if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized resource of type System.Drawing.Bitmap. Looks up a localized resource of type System.Drawing.Bitmap. Looks up a localized resource of type System.Drawing.Bitmap. Looks up a localized resource of type System.Drawing.Bitmap. Deliver stunningly neat, time-bound, and brief messages about application processes during or after execution. Creates a new component. Creates a new component. Provides a list of supported hosts used to contain snackbars. The current screen or monitor. A standard control or user control. The parent form owning the snackbar. Provides a list of positions to be used when displaying the snackbar. The top-left area. The top-center area. The top-right area. The top-right area. The middle-center area. The middle-right area. The bottom-left area. The bottom-center area. The bottom-right area. Lets you specify your own custom position using the property. Provides a default list of snackbar message types that can be used in various scenarios. Displays an information message. Displays a success message. Displays a warning message. Displays an error message. Specifies identifiers to indicate the return value of a snackbar. The snackbar return value is , meaning the snackabr ended its duration of display. The snackbar return value is , meaning the snackbar was closed by the end user. The snackbar return value is , meaning the snackbar's Action button was clicked. Gets or sets a value indicating whether the Snackbar will be draggable once displayed. Gets or sets a value indicating whether the Snackbar will be closed once clicked by the user. Gets or sets a value indicating whether the Snackbar will be closed once double-clicked by the user. Gets or sets a value indicating whether multiple instances of the Snackbar will be displayed at a time. Gets or sets a value indicating whether the close icon will be displayed. Gets or sets a value indicating whether the Snackbar icon will be displayed. Gets or sets a value indicating whether the Snackbar will display its borders rather than shadows. Gets or sets a value indicating whether the Snackbar will display its shadows rather than borders. Gets or sets a value indicating whether the close icon will fade when inactive. Gets or sets a value indicating whether the close icon will zoom-in when hovered onto. Gets or sets the Snackbar's overall distance between its host and its edges. Gets or sets the distance between Snackbars whenever multiple views are enabled using the property . Gets or sets the maximum number of Snackbars that can be visible at a given time. Gets or sets the duration the Snackbar will remain visible after it receives and then loses mouse focus. Gets or sets the Snackbar's message right margin, or distance between the message and the closing icon. Please note that the minimum size for display will be established beyond the user-provided margin. Gets the list of customization options provided for the Snackbar's informational messages. Gets the list of customization options provided for the Snackbar's success messages. Gets the list of customization options provided for the Snackbar's warning messages. Gets the list of customization options provided for the Snackbar's error messages. Gets or sets the minimum size the Snackbar can be auto-resized to. Gets or sets the maximum size the Snackbar can be auto-resized to. Gets or sets the host that will be used to contain the Snackbar. Gets a value determining whether an action was provided for the Snackbar. Provides a list of supported customization options for Snackbar messages. Initializes a new instance of class. Gets or sets the action button's foreground color. Gets or sets the action button's background color. Gets or sets the action button's border color. Gets or sets the Snackbar's close icon color. Gets or sets the Snackbar's background color. Gets or sets the Snackbar's border color. Gets or sets the message's foreground color. Gets or sets the action button's border radius. Gets or sets the Snackbar icon's left margin. Gets or sets the Snackbar's icon. Gets or sets the message's font. Gets or sets the action button's font. Returns a string containing the list of applied object propeties. Displays a Snackbar with specified text. The Form owning the Snackbar. The Snackbar message to be displayed. A . Displays a Snackbar with specified text. The Form owning the Snackbar. The Snackbar message to be displayed. The type of message to be displayed. A . Displays a Snackbar with specified text. The Form owning the Snackbar. The Snackbar message to be displayed. The type of message to be displayed. The time it will take before the Snackbar automatically closes. A . Displays a Snackbar with specified text. The Form owning the Snackbar. The Snackbar message to be displayed. The type of message to be displayed. The time it will take before the Snackbar automatically closes. Specify the text to be displayed in the action button. A . Displays a Snackbar with specified text. The Form owning the Snackbar. The Snackbar message to be displayed. The type of message to be displayed. The relative area or position where the Snackbar will be displayed. The time it will take before the Snackbar automatically closes. Specify the text to be displayed in the action button. A . Displays a Snackbar with specified text. The Form owning the Snackbar. The Snackbar message to be displayed. The type of message to be displayed. The relative area or position where the Snackbar will be displayed. The specific container that will host the Snackbar. The time it will take before the Snackbar automatically closes. Specify the text to be displayed in the action button. A . Displays a Snackbar with a custom control as its primary content. The Form owning the Snackbar. The control to be displayed in-place-of the default snackbar content. The time it will take before the Snackbar automatically closes. The relative area or position where the Snackbar will be displayed. The specific container that will host the Snackbar. A . Closes the currently active Snackbar. Closes all the currently displayed Snackbars. Lets you change the color(s) of a Bitmap image to a monochrome color. The Bitmap image to use. The resulting color of the Bitmap. The resulting colored Bitmap image. Required designer variable. Clean up any resources being used. true if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Provides extension methods that can be utilized with Bunifu Snackbars. Lets you to check the result returned by the Snackbar once it is closed. You can also use this to execute any specific action based on the result provided. The result returned by the Snackbar. The action to be performed either anonymously or as per a specific result.