[Express] new features and new ContentPanel Content tagged FineUICore!

The next version of FineUICore (v6.3.0), we will add ContentPanel and Content labels, note that this update is only TagHelpers, that is, only FineUICore.Examples.RazorPages sample project will be updated.

 

In v6.2.0 FineUICore previous versions, so we embed HTML tags:

< Div ID = "content1" > 
    < A the href = "http://tech.163.com/special/jobsdead/" target = "_ blank" > < B > Jobs </ B > </ A > < br /> 
    < div > 
        < the p- > 
            Jobs in February 24, 1955 born, Apple co-founder. . . . 
        </ P > 
    </ div > 
</ div > 
< F: Panel ID = "ContentPanel1" BodyPadding = "10"="false" ConentEl="#content1">
</f:Panel>

 

In FineUICore v6.3.0, we introduced the ContentPanel, directly in the ContentPanel inline, without introducing additional <div> tag, as shown below:

< F: the ContentPanel ID = "ContentPanel1" BodyPadding = "10" ShowBorder = "to false" the ShowHeader = "to false" > 
    < A the href = "http://tech.163.com/special/jobsdead/" target = "_ blank" > < b > Jobs </ b > </ A > < br /> 
    < div > 
        < the p- > 
            Jobs in February 24, 1955 born, Apple co-founder. . . . 
        </ P > 
    </ div > 
<

 

 

 

For other panels, such as Tab, Window, GroupPanel other labels, we can use the Content tab.

In v6.2.0 FineUICore previous version, we use the following form to HTML tags into the Window control:

< Div ID = "content1" > 
    < A the href = "http://tech.163.com/special/jobsdead/" target = "_ blank" > < B > Jobs </ B > </ A > < br /> 
    < div > 
        < the p- > 
            Jobs in February 24, 1955 born, Apple co-founder. . . . 
        </ P > 
    </ div > 
</ div > 
< F: the Window ID = "the Window1" the Width = "650" Title="窗体" IsModal="false" AutoScroll="true" BodyPadding="10" ConentEl="#content1">
</f:Window>

In FineUICore v6.3.0, a new Content tag, the tag can be simplified as:

<f:Window ID="Window1" Width="650" Height="300" IconFont="_Tag" Title="窗体" IsModal="false" AutoScroll="true" BodyPadding="10">
    <Content>
        <a href="http://tech.163.com/special/jobsdead/" target="_blank"><b>乔布斯</b></a><br />
        <div>
            <p>
                Jobs on February 24, 1955 born, Apple co-founder. . . . 
            </ P > 
        </ div > 
    </ the Content > 
</ F: the Window >

 

After this enhancement, FineUICore tags and labels FineUIPro even more similar, and look at the label comparison of this page:

FineUIPro:https://pro.fineui.com/#/panel/panel_group.aspx

FineUICore:https://pages.fineui.com/#/Panel/Group

 

 

It is not a little heart!

 

 

Note: FineUICore v6.3.0 planned in mid-May 2020 release, so stay tuned!

 

Guess you like

Origin www.cnblogs.com/sanshi/p/12652434.html