溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何實(shí)現(xiàn)Smobiler仿拉勾app篩選頁面

發(fā)布時(shí)間:2021-10-11 18:24:13 來源:億速云 閱讀:149 作者:iii 欄目:編程語言

本篇內(nèi)容主要講解“如何實(shí)現(xiàn)Smobiler仿拉勾app篩選頁面”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“如何實(shí)現(xiàn)Smobiler仿拉勾app篩選頁面”吧!

原型如下:

如何實(shí)現(xiàn)Smobiler仿拉勾app篩選頁面

https://github.com/comsmobiler/BlogsCode/blob/master/Source/BlogsCode_SmobilerForm/SelectForm/LGSelelctForm1.cs

創(chuàng)建窗體

創(chuàng)建一個(gè)SmobilerForm,文件名設(shè)置LGSelectForm1,將窗體的Layout設(shè)置Relative,再設(shè)置窗體的Statusbar屬性,BarStyle設(shè)置為Dark,BackColor設(shè)置為White;

在窗體中拖入兩個(gè)panel

如何實(shí)現(xiàn)Smobiler仿拉勾app篩選頁面

panel1用來放置搜索框,panel2用來放置tabPageView1、“區(qū)域”按鈕、“要求”按鈕、“公司”按鈕、“技能”按鈕、“排序”按鈕和listView1;

panel1的Height設(shè)置為45,panel2的Flex設(shè)置為1;

實(shí)現(xiàn)搜索框

設(shè)置panel1的Size設(shè)置為(300,45);

在panel1中拖入imageButton1、panel3、button1;

imageButton1的ImageDirection設(shè)置為Right,ImageType設(shè)置為FontIcon,ResourceID設(shè)置為angle-down,Text設(shè)置為“北京”;

在panel3中拖入fontIcon1,textBox1,;

fontIcon1的ResourceID設(shè)置為“search”;

textBox1的Text為“產(chǎn)品經(jīng)理”;

button1的BackColor設(shè)置為Transparent,BorderRadius設(shè)置為0,Text設(shè)置為“取消”;

 放置篩選按鈕

tabPageView1的BackColor設(shè)置為White,PageIndicator設(shè)置為Title,Titles設(shè)置為“相關(guān)職位”、“相關(guān)公司”,TitleStyle中BackColor屬性設(shè)置為White,F(xiàn)oreColor設(shè)置為DimGray,SelectedForeColor設(shè)置為Black;

在tabPageControl1中拖入panel3,panel3的Direction設(shè)置為Row,Layout設(shè)置為Relative;

在panel3中拖入imageButton2,imageButton3,imageButton4,imageButton5,imageButton6,listView1;

imageButton2的Flex設(shè)置為1,ImageDirection設(shè)置為Right,ImageType設(shè)置為FontIcon,ResourceID設(shè)置為caret-down,Text設(shè)置為“區(qū)域”;

imageButton3的Flex設(shè)置為1,ImageDirection設(shè)置為Right,ImageType設(shè)置為FontIcon,ResourceID設(shè)置為caret-down,Text設(shè)置為“要求”;

imageButton4的Flex設(shè)置為1,ImageDirection設(shè)置為Right,ImageType設(shè)置為FontIcon,ResourceID設(shè)置為caret-up,Text設(shè)置為“公司”;

imageButton5的Flex設(shè)置為1,ImageDirection設(shè)置為Right,ImageType設(shè)置為FontIcon,ResourceID設(shè)置為caret-down,Text設(shè)置為“技能”;

imageButton6的Flex設(shè)置為1,ImageDirection設(shè)置為Right,ImageType設(shè)置為FontIcon,ResourceID設(shè)置為caret-down,Text設(shè)置為“排序”;

listView1的Flex設(shè)置為1,templateControlName為ListLayout;

創(chuàng)建SmobilerUserControl

創(chuàng)建一個(gè)SmobilerUserControl,文件名設(shè)置為LGSelectLayout,將LGSelectLayout的Layout設(shè)置為Relactive,BackColor設(shè)置為White;

如何實(shí)現(xiàn)Smobiler仿拉勾app篩選頁面

panel1用來實(shí)現(xiàn)搜索框,實(shí)現(xiàn)同上述相同,panel3中放置tabPageView1、mainpanel、panel5、panel6;

tabPageView1的BackColor設(shè)置為White,PageIndicator設(shè)置為Title,Titles設(shè)置為“相關(guān)職位”、“相關(guān)公司”,TitleStyle中BackColor屬性設(shè)置為White,F(xiàn)oreColor設(shè)置為DimGray,SelectedForeColor設(shè)置為Green;

panel4用來放置篩選按鈕:“區(qū)域”按鈕、“要求”按鈕、“公司”按鈕、“技能”按鈕、“排序”按鈕,實(shí)現(xiàn)同上述相同;

mianpanel的Layout設(shè)置Relative,F(xiàn)lex設(shè)置1;

在panel5中拖入label1,checkBox1,label2;

label1的Text設(shè)置為“其他”,checkBox1的TintColor設(shè)置為Gray,label2的Text設(shè)置為“屏蔽已投遞公司”;

panel6的Layout設(shè)置為Relactive,Direction設(shè)置為Row,BackColor設(shè)置為White,Height設(shè)置為40,Padding設(shè)置為(8,8,8,8);

在panel6中放入button2和button3;

button2的BackColor設(shè)置為White,F(xiàn)oreColor設(shè)置為Black,Text設(shè)置為“重置”;

button3的BackColor設(shè)置為Green,F(xiàn)oreColor設(shè)置為White,Text設(shè)置為“確定”;

實(shí)現(xiàn)效果

如何實(shí)現(xiàn)Smobiler仿拉勾app篩選頁面

到此,相信大家對“如何實(shí)現(xiàn)Smobiler仿拉勾app篩選頁面”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI