#====================================================================================================
#Create_IKFK_RIG
#
#Designer:YangJie
#Email:691633493@
#Version:1.0
#============================================================================================
from maya.cmds import*
from YJ_FK_Rig import*
#Create window
if window('YJ_IKFK_UI',q=1,ex=1):
deleteUI('YJ_IKFK_UI',window=1)
window('YJ_IKFK_UI')
#Creat Main columnLayout
columnLayout('MainCL')
#Create FK Layout
columnLayout('FK_Ly',adjustableColumn=True,w=400)
rowLayout('FK_Ry',p='FK_Ly',nc=4,cw4=(50,175,50,175))
text('FK_star_t',label='StarJnt:')
textField('FK_star_tf')
text('FK_end_t',label='StarJnt:')
textField('FK_end_tf')
columnLayout('FK_Button_Ly',p='FK_Ly',adjustableColumn=True,w=400)
button( 'Jnt_Lod_Button',label='Load',c='')
button( 'FK_Button',label='FK_RIG',c='')
showWindow('YJ_IKFK_UI')