mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-13 21:51:28 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62634 954022d7-b5bf-4e40-9824-e11837661b57
24 lines
536 B
C#
24 lines
536 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace TestImageStudioMdi
|
|
{
|
|
public partial class FormPreview : Form
|
|
{
|
|
public FormPreview()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetPreview(object oImage)
|
|
{
|
|
axImageView31.SetAdditionalParam("MediaData", oImage);
|
|
axImageView31.ShrinkToFit();
|
|
}
|
|
}
|
|
} |