AcManager.Controls.Dialogs.ImageViewer.ImageViewer C# (CSharp) Метод

ImageViewer() публичный Метод

public ImageViewer ( IEnumerable images, int position, double maxWidth = double.MaxValue, double maxHeight = double.MaxValue ) : System
images IEnumerable
position int
maxWidth double
maxHeight double
Результат System
        public ImageViewer(IEnumerable<object> images, int position = 0, double maxWidth = double.MaxValue, double maxHeight = double.MaxValue) {
            DataContext = new ViewModel(images, position) {
                MaxImageWidth = maxWidth,
                MaxImageHeight = maxHeight
            };
            InitializeComponent();
            Buttons = new Button[] { };
        }

Same methods

ImageViewer::ImageViewer ( ImageSource imageSource ) : System
ImageViewer::ImageViewer ( string image, double maxWidth = double.MaxValue, double maxHeight = double.MaxValue ) : System