| Window Constructor (String, WindowMode) | 
        
         
            Creates a window
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Window(
	string name,
	WindowMode flags
)
Public Sub New ( 
	name As String,
	flags As WindowMode
)
public:
Window(
	String^ name, 
	WindowMode flags
)
new : 
        name : string * 
        flags : WindowMode -> WindowOpenCvSharp.Window = function(name, flags);
Parameters
- name
- Type: SystemString
 Name of the window which is used as window identifier and appears in the window caption.
- flags
- Type: OpenCvSharpWindowMode
 Flags of the window. Currently the only supported flag is WindowMode.AutoSize. 
            If it is set, window size is automatically adjusted to fit the displayed image (see cvShowImage), while user can not change the window size manually.
 See Also
See Also