Image 构造函数

定义

初始化 Image 类的新实例。Initializes a new instance of the Image class.

public:
 Image();
public Image ();
Public Sub New ()

示例

下面的示例演示如何创建和初始化类的新实例 ImageThe following example demonstrates how to create and initialize a new instance of the Image class.

备注

下面的代码示例使用单文件代码模型,如果直接复制到代码隐藏文件中,则可能无法正常工作。The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. 必须将此代码示例复制到扩展名为 .aspx 的空文本文件中。This code sample must be copied into an empty text file that has an .aspx extension. 有关 Web 窗体代码模型的详细信息,请参阅 ASP.NET Web 窗体页代码模型For more information on the Web Forms code model, see ASP.NET Web Forms Page Code Model.

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Image Example</title>
<script language="C#" runat="server">

      void Page_Load(Object sender, EventArgs e)
      {
         Image myImage = new Image();
         myImage.AlternateText = "Image Text";
         myImage.ImageUrl = "image1.jpg";
         myImage.ImageAlign = ImageAlign.Left;
         Page.Controls.Add(myImage);

      }

   </script>

</head>
 
<body>

   <form id="form1" runat="server">

      <h3>Image Example</h3>
  
   </form>

</body>
</html>
   
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Image Example</title>
<script language="VB" runat="server">

      Sub Page_Load(sender As Object, e As EventArgs)
         Dim myImage As New Image()
         myImage.AlternateText = "Image Text"
         myImage.ImageUrl = "image1.jpg"
         myImage.ImageAlign = ImageAlign.Left
         Page.Controls.Add(myImage)
      End Sub

   </script>

</head>
 
<body>

   <form id="form1" runat="server">

      <h3>Image Example</h3>
  
   </form>

</body>
</html>
   

注解

使用此构造函数创建并初始化类的新实例 ImageUse this constructor to create and initialize a new instance of the Image class.

适用于