チェンジセット 1685 (default)


以下の違いを無視:
日時:
2024/09/03 22:50:27 (5週前)
更新者:
hizuya@…
ログメッセージ:
  • JQueryImageHyperLink を追加。
場所:
framework/trunk
ファイル:
4個の追加
4個の更新

凡例:

未変更
追加
削除
  • framework/trunk/WebApplication/WebApplication.csproj

    r1670 r1685  
    8080    <Content Include="UI\WebControls\FormViewPage.aspx" /> 
    8181    <Content Include="UI\WebControls\FormViewWithControlsPage.aspx" /> 
     82    <Content Include="UI\WebControls\JQueryImageHyperLinkPage.aspx" /> 
    8283    <Content Include="UI\WebControls\ObjectDataSourceFormViewPage.aspx" /> 
    8384    <Content Include="UI\WebControls\RadioButtonFieldPage.aspx" /> 
     
    408409    <Compile Include="UI\Parameter\ParameterMemberPage.aspx.designer.cs"> 
    409410      <DependentUpon>ParameterMemberPage.aspx</DependentUpon> 
     411    </Compile> 
     412    <Compile Include="UI\WebControls\JQueryImageHyperLinkPage.aspx.cs"> 
     413      <DependentUpon>JQueryImageHyperLinkPage.aspx</DependentUpon> 
     414      <SubType>ASPXCodeBehind</SubType> 
     415    </Compile> 
     416    <Compile Include="UI\WebControls\JQueryImageHyperLinkPage.aspx.designer.cs"> 
     417      <DependentUpon>JQueryImageHyperLinkPage.aspx</DependentUpon> 
    410418    </Compile> 
    411419    <Compile Include="UI\WebControls\ObjectDataSourceFormViewPage.aspx.cs"> 
  • framework/trunk/WebLibrary/Sources/UI/WebControls/JQueryImage.cs

    r865 r1685  
    6565        /// </summary> 
    6666        public JQueryImage() 
    67             : base(HtmlTextWriterTag.Div) 
     67            : this(HtmlTextWriterTag.Div) 
     68        { 
     69            // AVOID 
     70        } 
     71 
     72        /// <summary> 
     73        /// インスタンスを作成します。 
     74        /// </summary> 
     75        /// <param name="tag"><see cref="HtmlTextWriterTag"/>。</param> 
     76        protected JQueryImage(HtmlTextWriterTag tag) 
     77            : base(tag) 
    6878        { 
    6979            ControlInitializer.ApplyProperties(this); 
     
    237247            writer.AddAttribute(HtmlTextWriterAttribute.Class, "ui-icon  ui-icon-" + iconName.ToLowerInvariant()); 
    238248 
    239             string alternateText = AlternateText; 
    240             if (alternateText.Length > 0 || GenerateEmptyAlternateText) 
    241             { 
    242                 writer.AddAttribute(HtmlTextWriterAttribute.Title, alternateText);  
     249            string toolTip = ToolTip; 
     250            if (!string.IsNullOrEmpty(toolTip)) 
     251            { 
     252                string alternateText = AlternateText; 
     253                if (alternateText.Length > 0 || GenerateEmptyAlternateText) 
     254                { 
     255                    writer.AddAttribute(HtmlTextWriterAttribute.Title, alternateText); 
     256                } 
    243257            } 
    244258 
  • framework/trunk/WebLibrary/Sources/Utility.cs

    r1595 r1685  
    5454 
    5555        /// <summary> 
     56        /// .NET Framework の 4.0 を表すバージョンです。 
     57        /// </summary> 
     58        internal static readonly Version Framework40 = new Version(4, 0); 
     59 
     60        /// <summary> 
    5661        /// カルチャの自動選択を表す文字列。 
    5762        /// </summary> 
  • framework/trunk/WebLibrary/WebLibrary.csproj

    r1665 r1685  
    165165    </Compile> 
    166166    <Compile Include="Sources\UI\WebControls\JQueryImageDialogOpenButton.cs" /> 
     167    <Compile Include="Sources\UI\WebControls\JQueryImageHyperLink.cs" /> 
    167168    <Compile Include="Sources\UI\WebControls\NumericBox.cs" /> 
    168169    <Compile Include="Sources\UI\WebControls\ObjectDataSource.cs" /> 
詳しい使い方は TracChangeset を参照してください。